程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#處理文件被占用資本,沒法刪除或修正的辦法

C#處理文件被占用資本,沒法刪除或修正的辦法

編輯:C#入門知識

C#處理文件被占用資本,沒法刪除或修正的辦法。本站提示廣大學習愛好者:(C#處理文件被占用資本,沒法刪除或修正的辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是C#處理文件被占用資本,沒法刪除或修正的辦法正文


Thread parameterThread_t = null; 
private void Print_DetailForm_Shown(object sender, EventArgs e) 

 
    parameterThread_t = new Thread(new ParameterizedThreadStart(this.openThread_telnet)); 
    //parameterThread_t.IsBackground = false; 
    parameterThread_t.Start(null); 

 
/// <summary> 
/// 線程履行的辦法,telnet獲得數據 
/// </summary> 
private void openThread_telnet(Object obj) 

    //TelNet_Manage manage = new TelNet_Manage(); 
    try 
    { 
        manage.PrintBySockets(null, wy_name, table, progressBar1, label2); 
        String localPath = Environment.CurrentDirectory + @"\Ne_data\wy\" + wy_name; 
        if (MessageBox.Show(this,"數據打印完成!\n文件地位:" + localPath + "\n能否進入該目次?", "提醒", MessageBoxButtons.YesNo) == DialogResult.Yes) 
        { 
            System.Diagnostics.Process.Start(localPath); 
        } 
        this.Close(); 
        System.Threading.Thread.CurrentThread.Abort();//終止以後線程 
    } 
    catch(Exception e) 
    { 
        MessageBox.Show(this,"打印數據掉敗!","提醒"); 
        System.Threading.Thread.CurrentThread.Abort();//終止以後線程   
        this.Close(); 
    } 
    System.Threading.Thread.CurrentThread.Abort();//終止以後線程   

 
private void button1_Click(object sender, EventArgs e) 

    //System.Threading.Thread.CurrentThread.Abort();//終止以後線程 
    if (parameterThread_t != null) 
    { 
        parameterThread_t.Interrupt(); 
        parameterThread_t.Abort(); 
        parameterThread_t.Join(); 
         
        GC.Collect(); 
    } 
    this.Close(); 
}

例子:在winform窗口在onshow事宜中啟動一個線程履行telnet法式。當點擊中斷按鈕(button1_Click)中斷線程再持續履行,而且釋放以後線程占用的文件資本。

症結:parameterThread_t.Abort();parameterThread_t.Join(); GC.Collect();意思是,把線程Abort()停滯線程履行,Join();線程掛起直到線程中斷了,然後再GC收受接管資本。

以上就是C#處理文件被占用資本的全體內容,願望能給年夜家一個參考,也願望年夜家多多支撐。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved