junction 2000/XP 심볼릭 링크 생성
http://technet.microsoft.com/ko-kr/sysinternals/bb896768%28en-us%29.aspx
rem 사용법
rem 만들기
junction -s 링크경로 원본경로

rem 지우기
junction -d 링크경로


ResHacker 리소스 교체
http://www.soft32.com/Download/Free/Resource_Hacker_340/4-3568-1.html

rem 아이콘 교체
rem 아이콘 번호는 ResHacker 로 열어서 확인
ResHacker.exe -modify src.exe, dst.exe,  new.ico,  icongroup, 아이콘번호, 0

ProcMon 프로세스가 하는 일 모두 체크하기
http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx


VMMap 가상 메모리 상태 보기
http://technet.microsoft.com/en-us/sysinternals/dd535533.aspx


Depends DLL 의존성 체크
http://dependencywalker.com/


Process Explorer
http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx


Application Verifier
http://www.microsoft.com/downloads/details.aspx?familyid=c4a25ab9-649d-4a1b-b4a7-c9d8b095df18&displaylang=en


Debugging Tools for Windows
http://www.microsoft.com/whdc/Devtools/Debugging/default.mspx


Fiddler
http://www.fiddler2.com/fiddler2/


SyncToy
http://www.microsoft.com/prophoto/downloads/synctoybeta.aspx


Wireshark
http://www.wireshark.org/
이올린에 북마크하기(0) 이올린에 추천하기(0)
2010/02/17 21:22 2010/02/17 21:22

파이썬 확장자로 파일 찾기

Posted at 2007/05/02 14:47// Posted in python/pyutils
import os
import stat

def FindFilesByExt(ext, path):
    if path[-1] != os.sep:
        path += os.sep

    ext = ext.lower()

    retList = []
    for name in os.listdir(path):
        if stat.S_ISDIR(os.stat(path + name).st_mode):
            retList += FindFilesByExt(ext, path + name)
        else:
            if name[-len(ext):].lower() == ext:
                retList.append(path + name)

    return retList

if __name__ == "__main__":
    for path in FindFilesByExt(".txt", "."):
        print path
이올린에 북마크하기(0) 이올린에 추천하기(0)
2007/05/02 14:47 2007/05/02 14:47