Re: Legitimate way to allow uploading of folders

2017-06-22 Thread Avraham Serour
The server can accept files, the frontend may allow the user to select a folder and send multiple files On Jun 22, 2017 8:32 PM, "Mandeep Tondak" wrote: > As per my experience we can not upload folder but we can upload zip folder > to server. You can unzip that folder and read all file and save

Re: Legitimate way to allow uploading of folders

2017-06-22 Thread Mandeep Tondak
As per my experience we can not upload folder but we can upload zip folder to server. You can unzip that folder and read all file and save to db. On Jun 22, 2017 10:41 PM, "ranvir singh" wrote: > On Thursday, June 22, 2017 at 9:54:41 PM UTC+5:30, mandeep444 wrote: >> >> You can use zip folder fo

Re: Legitimate way to allow uploading of folders

2017-06-22 Thread ranvir singh
On Thursday, June 22, 2017 at 9:54:41 PM UTC+5:30, mandeep444 wrote: > > You can use zip folder for that. > > Are you saying that we allow only zip files to be uploaded by the user. -- --- Ranvir Singh https://ranvirsinghprojects.wordpress.com https://github.com/singh1114 -- You received t

Re: Legitimate way to allow uploading of folders

2017-06-22 Thread Mandeep Tondak
You can use zip folder for that. On Jun 22, 2017 8:35 PM, "ranvir singh" wrote: > Hell there, > > I am an intermediate user of Django and have been using this since last > summer. Recently I encountered a situation in which I wanted to make an app > which allows the user to upload a folder. I ha

Legitimate way to allow uploading of folders

2017-06-22 Thread ranvir singh
Hell there, I am an intermediate user of Django and have been using this since last summer. Recently I encountered a situation in which I wanted to make an app which allows the user to upload a folder. I have already set up the views and template and it is working for a single file. I know ther