Lines Matching refs:filePath
284 proc SaveSettingFileFolder(string $filePath)
286 string $settingFolder = substitute("[^/]*$", $filePath, "");
322 global proc nw4cExpDialog_SaveSettingToFileDo(string $filePath)
330 if (match("\\.c3es$", $filePath) == "")
332 $filePath += ".c3es";
706 int $fid = fopen($filePath, "w");
709 ShowError("Can't open file: " + $filePath);
822 print ("Saved to " + $filePath + "\n");
828 global proc nw4cExpDialog_SaveSettingToFileFC(string $filePath, string $fileType)
832 SaveSettingFileFolder($filePath);
836 nw4cExpDialog_SaveSettingToFileDo($filePath);
858 global proc string nw4cExpDialog_GetOptionStringFromC3es(string $filePath)
931 int $fid = fopen($filePath, "r");
934 ShowError("Can't open file: " + $filePath);
943 ShowError("c3es file is wrong: " + $filePath);
1308 global proc nw4cExpDialog_LoadSettingFromFileDo(string $filePath)
1312 $optStr = nw4cExpDialog_GetOptionStringFromC3es($filePath);
1331 print ("Loaded from " + $filePath + "\n");
1337 global proc nw4cExpDialog_LoadSettingFromFileFC(string $filePath, string $fileType)
1341 SaveSettingFileFolder($filePath);
1345 nw4cExpDialog_LoadSettingFromFileDo($filePath);
1374 string $filePath = `fileDialog -dm $dirMask`;
1375 if (size($filePath) > 0)
1377 nw4cExpDialog_LoadSettingFromFileFC($filePath, "");
1484 global proc nw4cExpDialog_OutFolderBrowserFC(string $filePath, string $fileType)
1486 textFieldGrp -e -tx $filePath nw4cExpDialog_OutFolder;