C # winform path selection and file read/write

Source: Internet
Author: User

// Read the private void readBtn_Click (object sender, EventArgs e) {try {if (pathTxt. text = "") {MessageBox. show ("Enter the file address"); return;} readTxt. text = File. readAllText (pathTxt. text, Encoding. default); // do not need to escape "\" in the address} catch (Exception ex) {MessageBox. show ("file address error"); }}// write the private void writeBtn_Click (object sender, EventArgs e) {try {if (pathTxt. text = "") {MessageBox. show ("Enter the File address"); return;} File. writeAllText (pathTxt. text, writeTxt. text); MessageBox. show ("success");} catch (Exception ex) {MessageBox. show ("file address error") ;}}// read the folder path private void folderBtn_Click (object sender, EventArgs e) {if (folderBrowserDialog1.ShowDialog () = DialogResult. OK) {folderTxt. text = folderBrowserDialog1.SelectedPath; }}// read the file path private void fileBtn_Click (object sender, EventArgs e) {OpenFileDialog op = new OpenFileDialog (); op. filter = "Text files (*. txt) | *. txt | All Files (*. *) | *. * "; if (op. showDialog () = DialogResult. OK) {pathTxt. text = op. fileName ;}}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.