# -* - coding: utf-8 -* -
#!/usr/bin/python
import os
# checkfilesrec:遍歷指定目錄下的所有的檔案(不包括資料夾)
def checkfilesrec(path):
for root,dirs,files in os.walk(path):
for file in files:
print file
checkfilesrec(path)
# -* - coding: utf-8 -* -
#!/usr/bin/python
import os
# checkfiles:遍歷指定目錄下的當層所有的檔案(不包括資料夾)
def checkfiles(path):
filesanddirs = os.listdir (path)
files = [ x for x in filesanddirs if os.path.isfile( path + os.sep + x ) ]
for file in files:
print file
checkfiles(path)
# -* - coding: utf-8 -* -
#!/usr/bin/python
import os
import re
file=r"2.py"
# findandreplace:查詢path路徑下的直接檔案filename並將stra替換為strb
def findandreplace(path,filename,stra,strb):
file=path+os.sep+filename
f = open(file, 'r' )
filer = f.read()
sub = re.sub(stra,strb,filer,0); #替換stra 為 strb
f.close()
f = open(file, 'w' )
f.write(sub)
f.close()
findandreplace(path,file,"math","thma")
# -* - coding: utf-8 -* -
#!/usr/bin/python
import os
import re
# findandreplace:查詢path路徑下的直接檔案filename並將stra替換為strb
def findandreplace(path,filename,stra,strb):
file=path+os.sep+filename
f = open(file, 'r' )
filer = f.read()
sub = re.sub(stra,strb,filer,0); #替換stra 為 strb
f.close()
f = open(file, 'w' )
f.write(sub)
f.close()
# checkfiles:遍歷指定目錄下的當層所有的檔案(不包括資料夾)
def checkfiles(path):
filesanddirs = os.listdir (path)
files = [ x for x in filesanddirs if os.path.isfile( path + os.sep + x ) ]
for file in files:
findandreplace(path,file,"math","thma")
checkfiles(path)
# -* - coding: utf-8 -* -
#!/usr/bin/python
import os
import re
# findandreplace:查詢path路徑下的直接檔案filename並將stra替換為strb
def findandreplace(path,filename,stra,strb):
file=path+os.sep+filename
f = open(file, 'r' )
filer = f.read()
sub = re.sub(stra,strb,filer,0); #替換stra 為 strb
f.close()
f = open(file, 'w' )
f.write(sub)
f.close()
# checkfilesrec:遍歷指定目錄下的所有的檔案(不包括資料夾)
def checkfilesrec(path):
for root,dirs,files in os.walk(path):
for file in files:
findandreplace(root,file,"math","thma")
checkfilesrec(path)
應用程式資料夾1
mvc資料夾 所有的mvc應用程式的資料夾名稱都是相同的。mvc框架是基於預設的命名。控制器寫在controllers資料夾中,檢視寫在views資料夾中,模型寫在models資料夾中。就不必再應用程式 中使用資料夾名稱。標準化的命名減少了 量,同時有利與開發人員對mvc專案的理解。content資...
批處理程式資料夾加密
cls echo off title folder private if exist htg locker goto unlock if not exist private goto mdlocker confirm echo encrypt y n set p cho if cho y goto ...
小程式檔案
小程式中有四種檔案,分別是wxml wxss js和json檔案。其中最重要的兩個是wxml和js檔案,乙個是頁面骨架,乙個是要實現頁面邏輯的。而wxss是渲染作用,要是可以難看點的話,那麼直接不要wxss檔案,json檔案相當於配置檔案,還可以存放一些測試的資料。接下來分別講一下wxml wxss...