Lines Matching refs:filePath
307 proc SaveSettingFileFolder(string $filePath)
309 string $settingFolder = substitute("[^/]*$", $filePath, "");
345 global proc nw4cExpDialog_SaveSettingToFileDo(string $filePath)
353 if (match("\\.c3es$", $filePath) == "")
355 $filePath += ".c3es";
729 int $fid = fopen($filePath, "w");
732 ShowError("Can't open file: " + $filePath);
845 print ("Saved to " + $filePath + "\n");
851 global proc nw4cExpDialog_SaveSettingToFileFC(string $filePath, string $fileType)
855 SaveSettingFileFolder($filePath);
859 nw4cExpDialog_SaveSettingToFileDo($filePath);
881 global proc string nw4cExpDialog_GetOptionStringFromC3es(string $filePath)
954 int $fid = fopen($filePath, "r");
957 ShowError("Can't open file: " + $filePath);
966 ShowError("c3es file is wrong: " + $filePath);
1336 global proc nw4cExpDialog_LoadSettingFromFileDo(string $filePath)
1340 $optStr = nw4cExpDialog_GetOptionStringFromC3es($filePath);
1359 print ("Loaded from " + $filePath + "\n");
1365 global proc nw4cExpDialog_LoadSettingFromFileFC(string $filePath, string $fileType)
1369 SaveSettingFileFolder($filePath);
1373 nw4cExpDialog_LoadSettingFromFileDo($filePath);
1402 string $filePath = `fileDialog -dm $dirMask`;
1403 if (size($filePath) > 0)
1405 nw4cExpDialog_LoadSettingFromFileFC($filePath, "");
1513 global proc nw4cExpDialog_OutFolderBrowserFC(string $filePath, string $fileType)
1515 textFieldGrp -e -tx $filePath nw4cExpDialog_OutFolder;