ANSA二次开发_Python基础-OS模块
通过os模块查找文件夹内的指定后缀文件,并批量导入。importansafromansaimportbaseimportosdeffind_files(directory,extension):forroot,dirs,filesinos.walk(directory):forfileinfiles:iffile.endswith(extension):base.InputNastran((os.path.join(root,file)),elements_id="offset")#指定目录和文件后缀directory='D:/temp'extension='.bdf'find_files(directory,extension)Python的os模块提供了丰富的方法用于与操作系统交互。包括执行文件系统操作,如创建和删除文件,目录,获取文件属性,处理路径等。方法太多了,这里仅列举部分文件相关的方法。以下介绍os模块的常用方法1.os.getcwd()获取当前工作目录current_directory=os.getcwd()print(f"当前工作目录:{current_directory}")2.os.chdir(path)改变当前工作目录os.chdir('/path/to/directory')print(f"目录已更改到:{os.getcwd()}")3.os.listdir(path='.')列出指定目录下的所有文件和目录名files_and_directories=os.listdir('.')print(f"当前目录中的文件和目录:{files_and_directories}")4.os.mkdir(path,mode=0o777)创建目录os.mkdir('new_directory')print("目录已创建")5.os.makedirs(name,mode=0o777,exist_ok=False)递归创建目录os.makedirs('new_directory/sub_directory')print("递归目录已创建")6.os.rmdir(path)删除目录os.rmdir('new_directory')print("目录已删除")7.os.remove(path)删除文件os.remove('file.txt')print("文件已删除")8.os.rename(src,dst)重命名文件或目录os.rename('old_name.txt','new_name.txt')print("文件已重命名")9.os.stat(path)获取文件或目录的状态信息stat_info=os.stat('example.txt')print(f"文件大小:{stat_info.st_size}字节")print(f"最后修改时间:{stat_info.st_mtime}")10.os.path.join(path,paths)合并路径,返回一个新路径full_path=os.path.join('directory','subdirectory','file.txt')print(f"完整路径:{full_path}")11.os.path.split(path)分割路径,返回路径和文件名path,filename=os.path.split('/directory/subdirectory/file.txt')print(f"路径:{path},文件名:{filename}")12.os.path.exists(path)检查路径是否存在ifos.path.exists('file.txt'):print("文件存在")else:print("文件不存在")如果需要获取os模块下的所有方法,可以使用dir()函数列出os模块下的所有属性和方法。importosfortindir(os):print(t)#DirEntry#EX_OK#F_OK#GenericAlias#Mapping#MutableMapping#O_APPEND#O_BINARY#O_CREAT#O_EXCL#O_NOINHERIT#O_RANDOM#O_RDONLY#O_RDWR#O_SEQUENTIAL#O_SHORT_LIVED#O_TEMPORARY#O_TEXT#O_TRUNC#O_WRONLY#P_DETACH#P_NOWAIT#P_NOWAITO#P_OVERLAY#P_WAIT#PathLike#R_OK#SEEK_CUR#SEEK_END#SEEK_SET#TMP_MAX#W_OK#X_OK#_AddedDllDirectory#_Environ#__all__#__builtins__#__doc__#__file__#__loader__#__name__#__package__#__spec__#_check_methods#_execvpe#_exists#_exit#_fspath#_get_exports_list#_walk#_wrap_close#abc#abort#access#add_dll_directory#altsep#chdir#chmod#close#closerange#cpu_count#curdir#defpath#device_encoding#devnull#dup#dup2#environ#error#execl#execle#execlp#execlpe#execv#execve#execvp#execvpe#extsep#fdopen#fsdecode#fsencode#fspath#fstat#fsync#ftruncate#get_exec_path#get_handle_inheritable#get_inheritable#get_terminal_size#getcwd#getcwdb#getenv#getlogin#getpid#getppid#isatty#kill#linesep#link#listdir#lseek#lstat#makedirs#mkdir#name#open#pardir#path#pathsep#pipe#popen#putenv#read#readlink#remove#removedirs#rename#renames#replace#rmdir#scandir#sep#set_handle_inheritable#set_inheritable#spawnl#spawnle#spawnv#spawnve#st#startfile#stat#stat_result#statvfs_result#strerror#supports_bytes_environ#supports_dir_fd#supports_effective_ids#supports_fd#supports_follow_symlinks#symlink#sys#system#terminal_size#times#times_result#truncate#umask#uname_result#unlink#unsetenv#urandom#utime#waitpid#waitstatus_to_exitcode#walk#write来源:TodayCAEer