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.

Python mkdir giving me wrong permissions

I'm trying to create a folder and create a file within it. Whenever i create that folder (via Python), it …

python windows filesystems mkdir
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. …

android mkdir
mkdir Windows vs Linux

I have a problem while porting a Linux tool to Windows. I am using MinGW on a Windows system. I …

c++ windows linux mkdir
What is the difference between MD and MKDIR batch command?

Both command creates folders. I read that MKDIR can create even subfolders. Is that only difference? Why there are two …

windows batch-file cmd dos mkdir
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 …

php directory mkdir
Can't find mkdir() function in dirent.h for windows

I am using dirent.h 1.20 (source) for windows in VC2013. I can't find mkdir() in it. How am I supposed …

c++ c visual-c++ mkdir dirent.h
Using mkdir -m -p and chown together correctly

I would like to create a directory using a bash script and then set the mode to 00755 at the same …

linux bash sh mkdir
How to create a directory in a makefile when mkdir -p is not available?

I have a makefile which does the usual directory creation: $(Release_target_OBJDIR)/%.o: %.cpp mkdir -p $(dir $@) $(COMPILE.cpp) $&…

gnu-make mkdir scratchbox
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 …

perl filesystems directory mkdir
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 …

php permissions mkdir