Upload Files to folder outside htdocs folder

Hello, i have a virtual folder running on my xamp server using this code:


<Directory "D:/RClients">
	Options Indexes FollowSymLinks Includes ExecCGI
	AllowOverride All
	Order allow,deny
	Allow from all
	Require all granted
</Directory>

and my xamp server it is running on c:\xamppthe path to upload the files on my project isDocs/Clients/".$this->cname->CurrentValue. “/” .“Clinical Records”. “/” .($this->DocumentName->CurrentValue)my issued is files are upload to Docs/Clients and i need to upload to my virtual folder that is localhost/Clients but when i upload a file this go to htdocs/Clients and not my virtual folderis there any solution for this?

Upload path is physical folder relative to the project folder. (Your virtual directory is known to your Apache only.) You need to enter a relative path that can be resolved to your actual folder from the project folder, e.g. if your project folder is “C:\xampp\htdocs”, then you may try upload path like “…/…/…/D:/RClients/”

work perfect thanks!!!