mac 终端运行py文件

简介:


试验程序为:通过影藏后缀名,取得指定目录下的指定文件


import os
import sys


startdir = '/Users/./'

for dirpath,dirnames,filenames in os.walk(startdir):
for filename in filenames:
if os.path.splitext(filename)[1] == '.docx':
filepath = os.path.join(dirpath,filename)
print('file:' + filepath)



打开MAC终端,输入:

python /Users/./1.py

目录
相关文章
|
2月前
|
iOS开发 MacOS Windows
Mac air使用Boot Camp安装win10 ,拷贝 Windows 文件时出错
Mac air使用Boot Camp安装win10 ,拷贝 Windows 文件时出错
|
29天前
|
iOS开发 索引 MacOS
mac文件搜索工具
【10月更文挑战第11天】
|
3月前
|
数据安全/隐私保护 iOS开发 MacOS
Mac终端出现 brew command not found 解决
Mac终端出现 brew command not found 解决
124 3
|
3月前
|
芯片 iOS开发 MacOS
Mac上运行windows软件-GPTK
Mac上运行windows软件-GPTK
186 1
|
3月前
|
Linux
【Linux 或Mac系统】自动生成项目结构目录并放在README.md文件中
如何在Linux或Mac系统中使用tree命令自动生成项目结构目录,并将其格式化后放入项目的README.md文件中以展示项目结构。
105 1
|
3月前
|
SQL 关系型数据库 MySQL
Mac常用sh文件
Mac常用sh文件
32 0
|
3月前
|
内存技术
Mac 修改文件默认打开方式
Mac 修改文件默认打开方式
15 0
|
3月前
|
Windows 内存技术
Mac 播放 swf Flash文件
Mac 播放 swf Flash文件
24 0
|
6月前
|
存储 Shell
Mac终端工具Terminal (3):在Mac上的终端中执行命令和运行工具
Mac终端工具Terminal (3):在Mac上的终端中执行命令和运行工具
401 0
Mac 下终端命令无法使用的问题
Mac 下终端命令无法使用的问题
191 1