Lines Matching refs:files
13 This will print all the files that need to be updated or translated in the zh_CN locale.
17 This will print the status of all files under the directory.
180 """List all files with the specified suffix in the folder and its subfolders"""
181 files = []
189 # list all files and folders
196 files.append(ab_item)
198 return files
245 help="Locale to check when files are not specified",
252 help="Print files that do not have translations",
267 "files", nargs="*", help="Files or directories to check, if not specified, check all files"
275 # Get files related to linux path
276 files = args.files
277 if len(files) == 0:
293 files.append(new_file)
299 # check if the files are directories or files
301 for file in files:
305 # for directories, list all files in the directory and its subfolders
307 files = new_files
309 files = list(map(lambda x: os.path.relpath(os.path.abspath(x), linux_path), files))
314 for file in files: