Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
int status = rename( "c:\\hello.txt", "c:\\newdir\\newhello.txt" );
if ( status == -1 ) {
perror("rename failed");
}
char drv[_MAX_DRIVE];
char dir[_MAX_DIR];
char name[_MAX_FNAME];
char ext[_MAX_EXT];
drv[0] = dir[0] = name[0] = ext[0] = 0;
_splitpath(path,drv,dir,name,ext);
...
char cwd[_MAX_PATH];
char drv[_MAX_DRIVE];
char dir[_MAX_DIR];
_getcwd(cwd,sizeof cwd);
_splitpath(cwd,drv,dir,0,0);
char newdir[_MAX_PATH];
_makepath(newdir,drv,dir,"subdirname",0);
if (_mkdir(newdir))
{
// Can't create...
}