Most voted "mkdir" questions
8 questions
Sort by count of
-
3
votes3
answers451
viewsPermissive issues when creating Linux server folders using mkdir
I have a PHP system using Laravel 4.2 where I use the mkdir command to create a folder in the Storage/pdf directory, the command works in the Windows Dev environment, but when climbing to the UOL…
-
1
votes1
answer948
viewsPHP Upload files to a directory created with mkdir
I have an HTML form where I receive files by upload, in case one of image and the other with several PDF files, I need to organize them putting everything in a folder, for that I used mkdir, I…
-
1
votes2
answers217
views -
1
votes2
answers1183
viewsHow to create a Python directory inside a server?
Using the function mkdir it is possible to create a file in any directory inside the folders of the computer: Import os diretorio = "C:\\Users\\CRIACAO 2\\Desktop\\teste" os.mkdir(diretorio) But…
-
0
votes1
answer1582
viewsHow to create directory and upload file
Well I am with the following doubt, it is possible to create a directory with mkdir and in the same PHP code insert uploads files in this created directory? For example I have a form where I receive…
-
0
votes1
answer48
viewsCreating mkdir folder via PHP is not accessible via FTP
I am on an Apache/2.2.22 (Debian) server, and when creating an image upload folder for example the folder is totally inaccessible via FTP. No way to delete or even enter the folder. $folder_name =…
-
-1
votes1
answer1197
viewsmkdir does not create the directory
Even though I have permission, it does not create the directory and returns "not created". <?php $diretorio = 'C:/xampp/htdocs/LuckTor/arquivos/'; if (mkdir($diretorio . 'teste/', 777, true)) {…
-
-1
votes1
answer75
viewsError creating folder in PHP
I’m having trouble using the mkdir() inside my vps in the Digital Ocean. I installed the LAMP and I made all the appropriate settings to run my system. However, in the folder creation area, it is…