Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

ขอให้ผู้ใช้เลือกโฟลเดอร์เพื่ออ่านไฟล์ใน Python


หากคุณเคยสงสัยว่ากล่องโต้ตอบทำงานอย่างไรในแอปพลิเคชัน Python คุณอาจจะได้ยิน filedialog โมดูลใน Tkinter กล่องโต้ตอบแฟ้ม โมดูลมีฟังก์ชันในตัวจำนวนหนึ่งซึ่งสามารถใช้เพื่อแสดงกล่องโต้ตอบประเภทต่างๆ สำหรับจัดการกับไฟล์ในระบบ

ในกรณีส่วนใหญ่ เราใช้ filedialog.askopenfilename() ฟังก์ชันขอให้ผู้ใช้เรียกดูและเปิดไฟล์จากระบบ สคริปต์ได้รับการตั้งโปรแกรมให้ดำเนินการเขียนหรืออ่านตามการเลือกประเภทไฟล์

เมื่อเปิดไฟล์แล้ว คุณสามารถใช้ open(file, 'mode') ฟังก์ชันเพื่อเปิดและดำเนินการในโหมดใดก็ได้ เพื่อแสดงสิ่งนี้ ลองมาดูตัวอย่างที่เราจะสร้างแอปพลิเคชันที่จะขอให้ผู้ใช้เปิดไฟล์ข้อความ เมื่อเลือกและเปิดไฟล์แล้ว เราสามารถอ่านไฟล์นี้ได้โดยใช้โหมดการทำงาน "อ่าน"

ตัวอย่าง

# Import the library
from tkinter import *
from tkinter import filedialog

# Create an instance of window
win=Tk()

# Set the geometry of the window
win.geometry("700x300")

# Create a label
Label(win, text="Click the button to open a dialog", font='Arial 16 bold').pack(pady=15)

# Function to open a file in the system
def open_file():
   filepath = filedialog.askopenfilename(title="Open a Text File", filetypes=(("text    files","*.txt"), ("all files","*.*")))
   file = open(filepath,'r')
   print(file.read())
   file.close()

# Create a button to trigger the dialog
button = Button(win, text="Open", command=open_file)
button.pack()

win.mainloop()

ผลลัพธ์

การเรียกใช้โค้ดด้านบนจะแสดงหน้าต่างพร้อมปุ่มสำหรับเปิดกล่องโต้ตอบ

ขอให้ผู้ใช้เลือกโฟลเดอร์เพื่ออ่านไฟล์ใน Python

เลือกและเปิดไฟล์ข้อความ จากนั้นคอนโซลจะแสดงเนื้อหาทั้งหมดของไฟล์

Centralized Database Vs Blockchain

A blockchain can be both permissionless (like Bitcoin or Ethereum) or permissioned (like the different Hyperledger blockchain frameworks). A permissionless blockchain is also known as a public blockchain, because anyone can join the network. A permissioned blockchain, or private blockchain, requires pre-verification of the participating parties within the network, and these parties are usually known to each other.

Types of Blockchains
The choice between permissionless versus permissioned blockchains should be driven by the particular application at hand (or use case). Most enterprise use cases involve extensive vetting before parties agree to do business with each other. An example where a number of businesses exchange information is supply chain management. The supply chain management is an ideal use case for permissioned blockchains.

You would only want trusted parties participating in the network. Each participant that is involved in the supply chain would require permissions to execute transactions on the blockchain. These transactions would allow other companies to understand where in the supply chain a particular item is.