I have my desktop and in that i have the virtual machine where i have the django site working.
Now i have the external USB drive connected to the host where i have all the data.
I want to build the web interface for managing the files in that external drive. The main function i want to do is to
- move the files from one folder to another via web interface
- have the same folder structure in other folder named Archive so that when i select the folder and click archive then system should move that folder to that location
Can anyone give me some direction on how should i proceed. I don’t want the code but just guide lines on how should i approach the problem and tools /packages to use
Moving files around over a web interface is essentially the same operation you would perform using the CLI, except that the user running the underlying webserver must have file system permissions to perform the operation.
Look at these modules:
They are a level above
os.rename& company.