我正在使用checkListbox为进程选择多个文件。我想知道如何检查所选文件是否与内容一起存在。让我知道。提前谢谢。
我的代码是:
Dim FILE_NAME As String
For j = 0 To chkListBox.Items.Count - 1
If Not chkListBox.Items(j) = "Select/UnselectAll" Then
If chkListBox.GetItemChecked(j) = True Then
FILE_NAME = chkListBox.Items(j)
End If
End If
Next
If System.IO.File.Exists(FILE_NAME) = True Then
Me.Cursor = Cursors.WaitCursor
Timer1.Start()
Else
MessageBox.Show("File Does Not Exist..... Please select any File")
btnFileSelection.Focus()
End If
当我选择没有文件时,条件正常。但是,如果我在列表中选择单个文件意味着“文件不存在”消息框显示,直到循环存在。如何解决?
答案 0 :(得分:0)
public class DatabaseHelper extends SQLiteOpenHelper {
//Database helper class constructor...
public DatabaseHelper(Context context) {
super(context, context.getExternalFilesDir(DATABASE_NAME)
.getAbsolutePath() + File.separator + DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
}
}