Top "Mkdir" questions

The mkdir (make directory) command in the Unix, DOS, OS/2 and Microsoft Windows operating systems is used to make a new directory.

QDir mkdir with absolutepath

I have problem with the creation of dir with Qt. I would like to create a dir in documents'dir so, …

qt directory absolute-path mkdir
mkdir -p in Mac

I have been reading the description of the OSX Man page. It has description like following regarding mkdir -p: -p …

macos mkdir operand
mkdir -p fails when directory exists

On one of our remote systems mkdir -p $directory fails when the directory exists. which means it shows mkdir: cannot …

linux shell mkdir
File.mkdir or mkdirs return false - Reason?

Why file.mkdir is returning false? Google indicates that there could be several reasons (e.g. security, permissions, pathname, etc). …

java file javadoc mkdir
mkdir() not working

My code mkdir("/some/absolute/path",0777); and mkdir("relative/path", 0777); is not working, safe mode is turned off, and I've …

php mkdir
Codeigniter make directory if not exist

Hi can anyone help me with this. Basically I used the file uploading class of codeigniter the link is here …

php codeigniter upload mkdir
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); ?> …

php utf-8 directory filesystems mkdir
php mkdir() chmod and permissions

i was using this basic script: $folderPath = "../path/to/$folder/"; mkdir("$folderPath"); i create this directory and then upload photos …

php mkdir
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 …

php recursion path filesystems mkdir
How to create directory with right permissions using C on Posix

I am trying to write a simple C program that creates directories (a mkdir clone.). This is what I have …

c posix mkdir umask