Searched defs:destPath (Results 1 - 3 of 3) sorted by relevance

/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsLocalFileOS2.cpp549 nsCAutoString destPath; local
550 destParent->GetNativeTarget(destPath);
552 destPath.Append("\\");
558 destPath.Append(aFileName);
562 destPath.Append(newName);
574 rc = DosMove(filePath.get(), (PSZ)NS_CONST_CAST(char*, destPath.get()));
583 rc = DosCopy(filePath.get(), (PSZ)NS_CONST_CAST(char*, destPath.get()), DCPY_EXISTING);
604 strcat(achProgram, (PSZ)NS_CONST_CAST(char*, destPath.get()));
H A DnsLocalFileWin.cpp981 nsCAutoString destPath; local
982 destParent->GetNativeTarget(destPath);
984 destPath.Append("\\");
990 destPath.Append(aFileName);
994 destPath.Append(newName);
1015 copyOK = CopyFile(filePath.get(), destPath.get(), PR_TRUE);
1018 // What we have to do is check to see if the destPath exists. If it
1025 PRStatus status = PR_GetFileInfo64(destPath.get(), &fileInfo64);
1033 backup.Append(destPath);
1042 copyOK = MoveFile(destPath
[all...]
H A DnsLocalFileOSX.cpp669 nsCAutoString destPath; local
670 rv = parentDir->GetNativePath(destPath);
675 destPath.Append(NS_LITERAL_CSTRING("/") + newName);
681 destPath.Append(NS_LITERAL_CSTRING("/") + leafName);
685 if (rename(srcPath.get(), destPath.get()) != 0) {
703 ::CFURLCreateFromFileSystemRepresentation(NULL, (UInt8*)destPath.get(),
704 destPath.Length(), isDirectory);

Completed in 57 milliseconds