import os,re
import pandas as pd
import time
import json
import datetime
import tarfile
dir_path = r‘G:\Code\react\react-admin-simple\src‘
for root,dirs,files in os.walk(dir_path):##文件夹的路径
if files: ##判断是否有文件
for file_name in files: ##循环文件的名称
if ‘.less‘ in file_name: #判定是不是文件是否有less结尾的文件,是的就继续,不是的就退出了;
path = os.path.join(root,file_name)
print(‘正在处理的压缩文件是%s‘%(path))
cmd = "less2sass {path}".format(path = path)
#print(cmd)
os.system(cmd)
else:
pass
#print(‘warning:文件不含less2sass 结尾的文件,不操作‘)
#
相关文章
- 10-24c – std :: stringstream operator >>无法将字符串转换为float
- 10-24sql 把一列的数据按逗号分隔转换成多行
- 10-24c – 如何在使用字符串流时停止双精度转换为科学记数法
- 10-24Mybatis批量插入
- 10-24LeetCode(6):Z字形转换
- 10-24drupal中使用drush命令,快速批量的开启和关闭模块
- 10-24将中文乱码(ÎÖ¶ûÂ꾩¶«×ÔÓª¹Ù·½Æì½¢µê)转换成正确的格式(沃尔玛京东自营官方旗舰店)
- 10-24Delphi XE中String、ANSIString、TBytes之间的转换
- 10-24LOADRUNNER之汉字编码转换及\X00问题
- 10-2430-python3 中 bytes 和 string 之间的互相转换