コード例 #1
0
 def wipe_path_func(): # 경로의 여유공간 를 지우는 함수 
     for ret in FileUtilities.wipe_path(pathname, idle=True): 
         # Yield control to GTK idle because this process  
         # is very slow.  Also display progress.
         # FileUtilities.wipe_path = 경로의 여유 공간 지우는 함수
         # 이 기능은 반복기를 사용하여 GUI를 업데이트합니다.
         yield ret  #  pathname 의 여유 공간을 지우고 return 
     yield 0
コード例 #2
0
 def wipe_path_func():
     for ret in FileUtilities.wipe_path(path, idle=True):
         yield ret
     yield 0
コード例 #3
0
 def wipe_path_func():
     for ret in FileUtilities.wipe_path(pathname, idle=True):
         # Yield control to GTK idle because this process
         # is very slow.  Also display progress.
         yield ret
     yield 0
コード例 #4
0
ファイル: Cleaner.py プロジェクト: tstenner/bleachbit
 def wipe_path_func():
     for ret in FileUtilities.wipe_path(path, idle=True):
         yield ret
     yield 0
コード例 #5
0
ファイル: Cleaner.py プロジェクト: tstenner/bleachbit
 def wipe_path_func():
     for ret in FileUtilities.wipe_path(pathname, idle=True):
         # Yield control to GTK idle because this process
         # is very slow.  Also display progress.
         yield ret
     yield 0
コード例 #6
0
ファイル: Cleaner.py プロジェクト: mkhon/bleachbit
 def wipe_path_func():
     yield from FileUtilities.wipe_path(path, idle=True)
     yield 0
コード例 #7
0
 def wipe_path_func():  # 경로를 지우는 함수 
     for ret in FileUtilities.wipe_path(path, idle=True): # 경로를 지우는 메서드를 사용후 return
         yield ret
     yield 0