24 lines
581 B
Python
24 lines
581 B
Python
import os
|
|
|
|
def get_app_class(template):
|
|
class App(template):
|
|
def F_main(self):
|
|
if len(self.argv) == 1:
|
|
path = "."
|
|
else:
|
|
path = self.argv[1]
|
|
|
|
try:
|
|
for file in os.listdir(path):
|
|
print(file)
|
|
except OSError as e:
|
|
try:
|
|
os.stat(path)
|
|
print(path)
|
|
except OSError:
|
|
print(f"ls: cannot access '{path}': No such file or directory")
|
|
|
|
self.exit()
|
|
|
|
return App
|