Tagged Questions
The mkdir (make directory) command in the Unix, DOS, OS/2 and Microsoft Windows operating systems is used to make a new directory. The underlying system call is also called mkdir(). In DOS, OS/2 and Windows the command is often abbreviated to md.
79
votes
5answers
24k views
mkdir -p functionality in python
Is there a way to get functionality similar to mkdir -p on the shell... from within python. I am looking for a solution other than a system call. I am sure the code is less than 20 lines... really I ...
25
votes
7answers
24k views
How to mkdir only if a dir does not already exist?
I am writing a script to run under the korn shell on AIX. I'd like to use the mkdir command to create a directory. But the directory may already exist, in which case I don't want to do anything. So I ...
9
votes
3answers
2k views
How do I use filesystem functions in PHP, using UTF-8 strings?
I can't use mkdir to create folders with UTF-8 characters.
<?php
$dir_name = "Depósito";
mkdir($dir_name );
?>
But, when I browse this folder in Windows Explorer, the folder name looks like ...
9
votes
4answers
6k views
Is there a way to make mv create the directory to be moved to if it doesn't exist?
So, if I'm in my home directory and I want to move foo.c to ~/bar/baz/foo.c , but those directories don't exist, is there some way to have those directories automatically created, so that you would ...
8
votes
3answers
546 views
Vim: Creating parent directories on save
If I invoke vim foo/bar/somefile but foo/bar don't already exist, Vim refuses to save.
I know I could switch to a shell or do :!mkdir foo/bar from Vim but I'm lazy :)
Is there a way to make Vim do ...
8
votes
5answers
9k views
Recursive mkdir() system call on Unix
After reading the mkdir(2) man page for the Unix system call with that name, it appears that the call doesn't create intermediate directories in a path, only the last directory in the path. Is there ...
7
votes
3answers
698 views
Why mkdir fails to work with tilde (~)?
When I write
mkdir("~/folder1" , 0777);
in linux, it failed to create a directory. If I replace the ~ with the expanded home directory, it works fine. What is the problem with using ~ ?
Thanks
7
votes
1answer
686 views
Create folders recursively in Delphi
Need some help in creating function which can create folders recursively with giving path:
C:\TestFolder\Another\AndAnother
Delphi function MkDir returning IOerror = 3.
...
5
votes
6answers
144 views
PHP create nested directories
I need help with a function to create a 2 level directory for the following situations:
The desired sub-directory exists in the parent directory, do nothing.
Parent directory exists, sub-directory ...
5
votes
4answers
412 views
How to use mkdirs in a thread safe manner in Java?
After experiencing issues with mkdirs() and poking around the interwebs, I get the impression that there are thread safety issues with mkdirs().
Is there a way to ensure the directories are properly ...
5
votes
5answers
3k views
PHP mkdir and apache ownership
Is there a way to set php running under apache to create folders with the folder owned by the owner of the program that creates it instead of being owned by apache?
Using word press it creates new ...
5
votes
3answers
136 views
5
votes
3answers
3k views
Create directory in Vim
I can not create a directory in russian (UTF-8) using vimscript in WinXP.
For example
:call mkdir("привет")
creates directory with привет name instead of привет.
I have also tried
:call ...
4
votes
2answers
68 views
How can i pass a string literal like (“~/test/foo”) in mkdir function in C programming? [closed]
Possible Duplicate:
How can I create directory tree in C++/Linux?
Why mkdir fails to work with tilde (~)?
i'm trying to create a directory in a C program and i use the mkdir function.
My ...
4
votes
1answer
1k views
Android mkdir not making folder
Tonight I am currently having issues doing something that I thought would be simple... making a folder in /mnt/sdcard.
I have set the follow permission:
<uses-permission ...
4
votes
2answers
460 views
Permission denied on mkdir()
I'm getting the following error when trying to call mkdir() on a server...
Warning: mkdir() [function.mkdir]:
Permission denied in
...
4
votes
3answers
623 views
Why can't PHP create a directory with 777 permissions?
I'm trying to create a directory on my server using PHP with the command:
mkdir("test", 0777);
But it doesn't give full permissions, only these:
rwxr-xr-x
4
votes
1answer
374 views
How do I include parameters in a bash alias?
Trying to create:
alias mcd="mkdir $1; cd $1"
Getting:
$ mcd foo
usage: mkdir [-pv] [-m mode] directory ...
-bash: foo: command not found
What am I doing wrong?
4
votes
4answers
4k views
PHP mkdir( $recursive = true ) skips last directory
I've got the following piece of code on a PHP 5.2.4 (no safe_mode) linux server:
mkdir( $path, 0777, true );
when I enter a path like:
'/path/to/create/recur/ively/'
all directories are created ...
4
votes
2answers
3k views
How to find a reason when mkdir fails from PHP?
PHP's mkdir function only returns true and false. Problem is when it returns false.
If I'm running with error reporting enabled, I see the error message on the screen. I can also see the error ...
3
votes
1answer
58 views
Android mkdirs() sets invalid permissions, locks other apps out of folder
I'm working on a media file organization program for Android and I want to move media files into a directory structure such as root/Artist/Album/Song.flac. I am looping through a data structure ...
3
votes
2answers
363 views
PowerShell mkdir alias + Set-StrictMode -Version 2. Strange bug. Why?
It's something unbelievable. PowerShell code snippet in test.ps1 file:
Set-StrictMode -Version 2
mkdir c:\tmp\1 # same with 'md c:\tmp\1'
Start cmd.exe, navigate to folder with test.ps1 script and ...
3
votes
3answers
468 views
mkdir() in php is setting folder permission to 755 But I Need 777?
I am trying to create a folder on my server using php when i set it to 0777 it comes out as 755?
mkdir($create_path, 0777);
Thank you
3
votes
6answers
3k views
mkdirs returns false for directory on sd card while the parent directory is writable
When starting my android application, I need to create a directory on the sd card, for a small number of users this fails and I can't figure out the reason for it...
(I've found similar problems ...
3
votes
3answers
307 views
How can I create a directory with the 'right' permissions using Perl's mkdir?
I need help with this program. As a part of my project I need to
create a directory. I was using the system function to do this, but
later was told that Perl has a builtin called mkdir.
I'm on ...
3
votes
5answers
235 views
Creating/making directories in python (complex)
I am trying to create a bunch of directories/subdirectories that I can copy files into. I am working with Python and I can't seem to find a good way to do this. I have a main path that I will branch ...
3
votes
6answers
56 views
how to find the directory already is there or not in php
i want know find the directory is already there or not...
if not i would like to create the directory...
my coding is below...
$da = getdate();
$dat = ...
3
votes
2answers
794 views
Recursive mkdir() and chmod()?
When using mkdir() with the recursive flag set to true do all the created directories get the specified chmod or just the last one? For example:
mkdir('/doesnotExist1/doesnotExist2/doesnotExist3/', ...
3
votes
2answers
2k views
How do I create a directory and parent directories in one Perl command?
In Perl, how can I create a subdirectory and, at the same time, create parent directories if they do not exist? Like UNIX's mkdir -p command?
3
votes
4answers
883 views
SVN: How to re-create a directory that's created but not committed yet
Here's a little SVN problem:
I create a directory locally:
$ svn mkdir output
A output
I accidentally remove it:
rm -rf output
Now, how do I recreate it? I tried this:
$ svn mkdir ...
2
votes
4answers
44 views
php mkdir() and apache ownership issue
PROBLEM
I'm trying to upload files to my own server via PHP. If folder doesn't exist, first I attempt to create the folders;
mkdir($folder, 0700);
My script is creating the folders but apache is ...
2
votes
3answers
131 views
mkdir -p awk input
I want to create an input argument for mkdir -p, I have one directory tree structure in one server and I want to copy this same structure to another machine using a mkdir -p command. The two machines ...
2
votes
1answer
98 views
php - session temp folder
Idea is this:
User uploads a file(s) in some "temp" folder that exist only for current session.
User registers
Files form "temp" folder are moved to permanent folder aka storage.
I can do ...
2
votes
2answers
198 views
Linux: Bash: what does mkdir return
I want to write a simple check upon running mkdir to create a dir. First it will check whether the dir already exists, if it does, it will just skip. If the dir doesn't exist, it will run mkdir, if ...
2
votes
2answers
204 views
python mkdir to make folder with subfolder?
This works:
mkdir('folder')
but this doesn't
mkdir('folder/subfolder')
error:
WindowsError: [Error 3] The system cannot find the path specified: 'folder/subfolder'
2
votes
3answers
213 views
Isn't Android File.exists() case sensitive?
I've created a new folder "sdcard/dd" by:
File album = new File(albumPath);
if (album.exists()) {
Log.d(TAG, albumPath + " already exists.");
} else {
boolean bFile = album.mkdir();
}
And ...
2
votes
2answers
184 views
mkdir(folder_name) with 755 permission in php
I have my web application hosted in /var/www folder. I am creating a folder from one of the PHP scripts of the web application. The default permission of the created folder is drwx------, i.e. 700. ...
2
votes
2answers
2k views
PHP mkdir() and fopen() does not work - permissions problem? umask problem?
The following PHP script fails to create the directory. It will also fail to create the file (when the directory already exists).
ini_set('error_reporting', E_ALL);
define('ABSPATH', ...
2
votes
2answers
985 views
Php mkdir( ) exception handling
mkdir() is working correctly this question is more about catching an error. Instead of printing this when the directory exists I would just like to have it write to a message to me in a custom log. ...
2
votes
2answers
1k views
mkdir not working in PHP
Have been pulling out my hair for the past 2 hours on this and am sure I am doing something really stupid.
<?php
mkdir("blah", 0777);
?>
This works through the command line and the folder ...
2
votes
4answers
225 views
Solutions for the potential lack of permission to mkdir() from within a php install script
Alright, so I have a problem. I need to create a folder to store compiled templates in php. I have an install script that tries to mkdir() an appropriate directory (compiled_templates).
Invariably ...
1
vote
3answers
37 views
One PHP file not executing, others working fine (using php function “mkdir”)
FINAL EDIT: FIXED but not solved. Not sure what was going on, but I created a new php file from scratch and that one worked. Very strange.
edit: I have permissions set to 777 on all related folders
...
1
vote
2answers
23 views
Can't seem to get correct permissions for mkdir() in PHP
I have the following simple script to test the mkdir() function in PHP:
<?php
$id = rand();
$targetPath = $_SERVER['DOCUMENT_ROOT'] . '/sample_folder/' . $id .'/';
...
1
vote
3answers
36 views
mkdir() warning generated even though script was successful
I'm creating a content management system whereby the user can create categories and sections dynamically through an interface. It's PHP and MySQL driven - when the user clicks the form to submit the ...
1
vote
1answer
13 views
Extra Characters from console I/O using gets
I'm trying to build a ruby program which creates a directory and name it using console input.
1 #!/usr/bin/env ruby¬
2 ¬
3 ...
1
vote
3answers
39 views
PHP's mkdir function trouble on Windows
I am working on a command line program in PHP and I am having trouble, my first problem is when I call PHP's mkdir() it is giving me this error
Warning: mkdir(): No such file or directory in
...
1
vote
2answers
37 views
warning in mkdir and how to display images from the directory created
My program is supposed to create a folder for the uploaded images on the directory but gives this warning:
mkdir() [function.mkdir]: File exists in C:\XAMP\xampp\htdocs\gallery\uploader3.php on ...
1
vote
3answers
60 views
Variable in mkdir?
I want to create a subfolder inside mp3 with the name of $ts (the current timestamp) but php doesn't really allow me to do that.
This is my code:
$ts = time();
mkdir('\xampp\htdocs\mp3\$ts', 0777, ...
1
vote
1answer
138 views
How to create non-read-only directories from Java in Wndows
I'm creating directories using myFileObject.mkdirs(). In Windows, every directory that gets created is marked as read-only. Although I can (oddly) still write to the directory, it creates aggravation ...
1
vote
3answers
199 views
Create directory by mkdir
I am confused about why the following code cannot work, anybody can help me?
I want to create a folder named by the user name in /tmp/vnc/, I can create that folder in command line with perl -e ...