summary refs log tree commit diff stats
path: root/code/directory.py
diff options
context:
space:
mode:
Diffstat (limited to 'code/directory.py')
-rw-r--r--code/directory.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/code/directory.py b/code/directory.py
index e28bf35c..d50432d2 100644
--- a/code/directory.py
+++ b/code/directory.py
@@ -17,6 +17,7 @@ class Directory():
 		import os
 		if self.frozen: raise FrozenException()
 		try:
+			self.mtime = os.path.getmtime(self.path)
 			self.files = os.listdir(self.path)
 			self.exists = True
 			self.accessible = True
@@ -24,6 +25,7 @@ class Directory():
 			self.files = None
 			self.exists = False
 			self.accessible = False
+
 		self.files_loaded = True
 
 	def clone(self):
@@ -51,4 +53,3 @@ if __name__ == '__main__':
 	print(d.files)
 	print(d[1])
 
-	
/a> 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144