最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

NewyearDOS(仿系統(tǒng))

2023-08-11 09:47 作者:新的一year  | 我要投稿

用python做了一個(gè)仿系統(tǒng),歡迎使用,以下是源碼:

import os

print ("歡迎,版本號(hào):0.017")


class NewyearDOS:

? ? def __init__(self):

? ? ? ? self.current_dir = os.getcwd()


? ? def run(self):

? ? ? ? while True:

? ? ? ? ? ? command = input(f"{self.current_dir}> ")

? ? ? ? ? ? self.execute_command(command)


? ? def execute_command(self, command):

? ? ? ? command_parts = command.split()


? ? ? ? if command_parts:

? ? ? ? ? ? cmd = command_parts[0].lower()

? ? ? ? ? ? args = command_parts[1:]


? ? ? ? ? ? if cmd == "cd":

? ? ? ? ? ? ? ? self.change_directory(args)

? ? ? ? ? ? elif cmd == "dir":

? ? ? ? ? ? ? ? self.list_directory()

? ? ? ? ? ? elif cmd == "mkdir":

? ? ? ? ? ? ? ? self.create_directory(args)

? ? ? ? ? ? elif cmd == "rmdir":

? ? ? ? ? ? ? ? self.remove_directory(args)

? ? ? ? ? ? elif cmd == "exit":

? ? ? ? ? ? ? ? exit()

? ? ? ? ? ? elif cmd == "help":

? ? ? ? ? ? ? ? self.show_help()

? ? ? ? ? ? else:

? ? ? ? ? ? ? ? print("無(wú)效的命令")


? ? def change_directory(self, args):

? ? ? ? if args:

? ? ? ? ? ? new_dir = os.path.join(self.current_dir, args[0])

? ? ? ? ? ? if os.path.isdir(new_dir):

? ? ? ? ? ? ? ? self.current_dir = new_dir

? ? ? ? ? ? else:

? ? ? ? ? ? ? ? print("目錄不存在")

? ? ? ? else:

? ? ? ? ? ? print("缺少目錄名")


? ? def list_directory(self):

? ? ? ? files = os.listdir(self.current_dir)

? ? ? ? for file in files:

? ? ? ? ? ? file_path = os.path.join(self.current_dir, file)

? ? ? ? ? ? if os.path.isdir(file_path):

? ? ? ? ? ? ? ? print(f"<DIR>\t{file}")

? ? ? ? ? ? else:

? ? ? ? ? ? ? ? print(f"\t{file}")


? ? def create_directory(self, args):

? ? ? ? if args:

? ? ? ? ? ? new_dir = os.path.join(self.current_dir, args[0])

? ? ? ? ? ? try:

? ? ? ? ? ? ? ? os.mkdir(new_dir)

? ? ? ? ? ? ? ? print(f"目錄 '{args[0]}' 創(chuàng)建成功")

? ? ? ? ? ? except:

? ? ? ? ? ? ? ? print("無(wú)法創(chuàng)建目錄")

? ? ? ? else:

? ? ? ? ? ? print("缺少目錄名")


? ? def remove_directory(self, args):

? ? ? ? if args:

? ? ? ? ? ? dir_path = os.path.join(self.current_dir, args[0])

? ? ? ? ? ? if os.path.isdir(dir_path):

? ? ? ? ? ? ? ? try:

? ? ? ? ? ? ? ? ? ? os.rmdir(dir_path)

? ? ? ? ? ? ? ? ? ? print(f"目錄 '{args[0]}' 刪除成功")

? ? ? ? ? ? ? ? except:

? ? ? ? ? ? ? ? ? ? print("無(wú)法刪除目錄")

? ? ? ? ? ? else:

? ? ? ? ? ? ? ? print("目錄不存在")

? ? ? ? else:

? ? ? ? ? ? print("缺少目錄名")


? ? def show_help(self):

? ? ? ? print("可用命令:")

? ? ? ? print("cd <目錄> - 切換當(dāng)前目錄")

? ? ? ? print("dir - 列出文件和目錄")

? ? ? ? print("mkdir <目錄> - 創(chuàng)建新目錄")

? ? ? ? print("rmdir <目錄> - 刪除目錄")

? ? ? ? print("exit - 退出程序")

? ? ? ? print("help - 顯示可用命令及其描述")



dos = NewyearDOS()

dos.run()

看完了點(diǎn)個(gè)贊吧!?。。。。。。。。。。?/p>


NewyearDOS(仿系統(tǒng))的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
铜鼓县| 古浪县| 襄汾县| 洛隆县| 昆明市| 黑水县| 扶沟县| 胶州市| 垣曲县| 申扎县| 钦州市| 建平县| 岗巴县| 聊城市| 抚松县| 南开区| 赤壁市| 博客| 崇阳县| 西青区| 卢龙县| 资阳市| 涟水县| 毕节市| 准格尔旗| 湘乡市| 隆德县| 分宜县| 南郑县| 宝清县| 璧山县| 酉阳| 孟村| 鸡东县| 临沂市| 内江市| 古交市| 松溪县| 临邑县| 临漳县| 潜山县|