Lines Matching refs:path
157 if not os.path.isfile(msbuild_exe_path):
161 if not os.path.isfile(msbuild_exe_path):
168 path = os.path.realpath(DEFAULT_OUTPUT_FILE_PATH)
170 if os.path.exists(path) == False:
171 os.makedirs(path)
173 if not os.path.isfile(gxp_project):
176 if not os.path.isfile(studio_release):
179 absolute_path = os.path.abspath(gxp_project)
180 os.system(os.path.abspath(studio_release) + " -p " + absolute_path + " -n")
187 if not os.path.isfile(pathname_1):
191 if not os.path.isfile(pathname_2):
291 absolute_path = os.path.abspath(studio_exe_path)
292 if not os.path.isfile(absolute_path):
294 Popen(os.path.abspath(absolute_path))
364 if (os.path.exists("c:\\temp\\guix_param1.txt")):
367 if (os.path.exists("c:\\temp\\guix_param0.txt")):
475 path = os.path.realpath(DEFAULT_OUTPUT_FILE_PATH + "/" + test_name)
476 if os.path.exists(path) == False:
477 os.makedirs(path)
478 filename = path + "/test_" + str(studio_test_index) + ".bmp"
502 path = os.path.realpath(DEFAULT_TEST_FAILURE_PATH)
503 if os.path.exists(path) == False:
504 os.makedirs(path)
505 filename = path + "/" + test_name +"_" + str(studio_test_index) + ".bmp"
558 path = os.path.realpath(DEFAULT_TEST_FAILURE_PATH)
559 print(path)
560 if os.path.exists(path):
561 shutil.rmtree(path)
563 path = os.path.realpath(DEFAULT_OUTPUT_FILE_PATH)
564 print(path)
565 if os.path.exists(path):
566 shutil.rmtree(path)
578 if os.path.exists(DEFAULT_OUTPUT_FILE_PATH) == False:
588 if os.path.exists(gen_golden_file_pathname):
641 if os.path.exists(file_path) is False:
662 if os.path.exists(file_path) is False:
1197 def open_project(path, compare = 1): argument
1198 if not os.path.isfile(path):
1199 raise Exception('Test project is missing: %s' %path)
1200 abs_path = os.path.abspath(path)
1494 def add_pixelmaps(folder_name, path, name_array, wait = CLOSE_WAIT): argument
1498 path = os.path.realpath(path) + '\\'
1499 …logging.info("add pixelmaps, folder name = %s, path = %s, names = %s", folder_name, path, name_arr…
1502 param += path + ','
1580 name = os.path.abspath(name)
1821 def configure_source_path(path): argument
1822 path = os.path.realpath(path)
1824 if os.path.exists(path) == False:
1825 os.makedirs(path)
1827 logging.info('set source files path: %s', path)
1828 send_to_project_configure_dialog('CMD_CONFIGURE_SOURCE_PATH', path)
1830 def configure_header_path(path): argument
1831 path = os.path.realpath(path)
1833 if os.path.exists(path) == False:
1834 os.makedirs(path)
1836 logging.info('set header files path: %s', path)
1837 send_to_project_configure_dialog('CMD_CONFIGURE_HEADER_PATH', path)
1839 def configure_resource_path(path): argument
1840 path = os.path.realpath(path)
1842 if os.path.exists(path) == False:
1843 os.makedirs(path)
1845 logging.info('set resource files path: %s', path)
1846 send_to_project_configure_dialog('CMD_CONFIGURE_RESOURCE_PATH', path)
2177 def set_image_path(path): argument
2178 logging.info('set image path: %s', path)
2179 send_to_pixelmap_edit_dialog('CMD_SET_IMAGE_PATH', path)
2293 def set_new_project_path(path): argument
2294 path = os.path.realpath(path)
2296 if os.path.exists(path) == False:
2297 os.makedirs(path)
2299 logging.info('set project path to "%s"', path)
2300 send_to_new_project_dialog('CMD_SET_NEW_PROJECT_PATH', path)
2370 filename = os.path.realpath(filename)
2479 def set_string_export_path(path): argument
2480 path = os.path.realpath(path)
2482 if os.path.exists(path) == False:
2483 os.makedirs(path)
2485 logging.info('set string export file path: %s', path)
2486 send_to_string_export_dialog('CMD_SET_STRING_EXPORT_PATH', path)