How to delete a folder in an external drive in vb?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I'm having some issues with this program I'm trying to make. It's a simple program that deletes a folder from my SD card. But when I go to run it, click the button that does this action, it spits out this error:
Could not find a part of the path 'C:sdcafiine'.
This is the code I used:
Dim path As String = Form1.ComboBox1.Text & "sdcafiine"
System.IO.Directory.Delete(path, True)
I have another form that has a combobox in it with drive letters in it. This line of code basically reads the drive number and merges it with the path, to create something like "L:sdcafiine", or "O:sdcafiine."
For some reason, it replaces that read drive letter with "C:".
.net vb.net
add a comment |
I'm having some issues with this program I'm trying to make. It's a simple program that deletes a folder from my SD card. But when I go to run it, click the button that does this action, it spits out this error:
Could not find a part of the path 'C:sdcafiine'.
This is the code I used:
Dim path As String = Form1.ComboBox1.Text & "sdcafiine"
System.IO.Directory.Delete(path, True)
I have another form that has a combobox in it with drive letters in it. This line of code basically reads the drive number and merges it with the path, to create something like "L:sdcafiine", or "O:sdcafiine."
For some reason, it replaces that read drive letter with "C:".
.net vb.net
Are you executing this code on a secondary thread?
– TnTinMn
Nov 17 '18 at 4:52
add a comment |
I'm having some issues with this program I'm trying to make. It's a simple program that deletes a folder from my SD card. But when I go to run it, click the button that does this action, it spits out this error:
Could not find a part of the path 'C:sdcafiine'.
This is the code I used:
Dim path As String = Form1.ComboBox1.Text & "sdcafiine"
System.IO.Directory.Delete(path, True)
I have another form that has a combobox in it with drive letters in it. This line of code basically reads the drive number and merges it with the path, to create something like "L:sdcafiine", or "O:sdcafiine."
For some reason, it replaces that read drive letter with "C:".
.net vb.net
I'm having some issues with this program I'm trying to make. It's a simple program that deletes a folder from my SD card. But when I go to run it, click the button that does this action, it spits out this error:
Could not find a part of the path 'C:sdcafiine'.
This is the code I used:
Dim path As String = Form1.ComboBox1.Text & "sdcafiine"
System.IO.Directory.Delete(path, True)
I have another form that has a combobox in it with drive letters in it. This line of code basically reads the drive number and merges it with the path, to create something like "L:sdcafiine", or "O:sdcafiine."
For some reason, it replaces that read drive letter with "C:".
.net vb.net
.net vb.net
edited Nov 17 '18 at 6:04
James Z
11.2k71936
11.2k71936
asked Nov 17 '18 at 4:49
w60w60
145
145
Are you executing this code on a secondary thread?
– TnTinMn
Nov 17 '18 at 4:52
add a comment |
Are you executing this code on a secondary thread?
– TnTinMn
Nov 17 '18 at 4:52
Are you executing this code on a secondary thread?
– TnTinMn
Nov 17 '18 at 4:52
Are you executing this code on a secondary thread?
– TnTinMn
Nov 17 '18 at 4:52
add a comment |
1 Answer
1
active
oldest
votes
Nevermind, I got it to work.
It was in a BackgroundWorker, which may have not been a smart choice. I removed the BGWorker and put the code directly in the Button.Click method, and it works now.
For future reference: You should NEVER access the user interface directly from a background thread/task. If you need to interact with the UI from the background you must useControl.Invoke()
in order to marshal the call to execute on the UI thread itself. For more information see: How can I run code in a background thread and still access the UI?
– Visual Vincent
Nov 17 '18 at 8:12
The golden rule of WinForms is: Leave all UI related work on the UI thread!
– Visual Vincent
Nov 17 '18 at 8:13
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53348325%2fhow-to-delete-a-folder-in-an-external-drive-in-vb%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Nevermind, I got it to work.
It was in a BackgroundWorker, which may have not been a smart choice. I removed the BGWorker and put the code directly in the Button.Click method, and it works now.
For future reference: You should NEVER access the user interface directly from a background thread/task. If you need to interact with the UI from the background you must useControl.Invoke()
in order to marshal the call to execute on the UI thread itself. For more information see: How can I run code in a background thread and still access the UI?
– Visual Vincent
Nov 17 '18 at 8:12
The golden rule of WinForms is: Leave all UI related work on the UI thread!
– Visual Vincent
Nov 17 '18 at 8:13
add a comment |
Nevermind, I got it to work.
It was in a BackgroundWorker, which may have not been a smart choice. I removed the BGWorker and put the code directly in the Button.Click method, and it works now.
For future reference: You should NEVER access the user interface directly from a background thread/task. If you need to interact with the UI from the background you must useControl.Invoke()
in order to marshal the call to execute on the UI thread itself. For more information see: How can I run code in a background thread and still access the UI?
– Visual Vincent
Nov 17 '18 at 8:12
The golden rule of WinForms is: Leave all UI related work on the UI thread!
– Visual Vincent
Nov 17 '18 at 8:13
add a comment |
Nevermind, I got it to work.
It was in a BackgroundWorker, which may have not been a smart choice. I removed the BGWorker and put the code directly in the Button.Click method, and it works now.
Nevermind, I got it to work.
It was in a BackgroundWorker, which may have not been a smart choice. I removed the BGWorker and put the code directly in the Button.Click method, and it works now.
answered Nov 17 '18 at 4:52
w60w60
145
145
For future reference: You should NEVER access the user interface directly from a background thread/task. If you need to interact with the UI from the background you must useControl.Invoke()
in order to marshal the call to execute on the UI thread itself. For more information see: How can I run code in a background thread and still access the UI?
– Visual Vincent
Nov 17 '18 at 8:12
The golden rule of WinForms is: Leave all UI related work on the UI thread!
– Visual Vincent
Nov 17 '18 at 8:13
add a comment |
For future reference: You should NEVER access the user interface directly from a background thread/task. If you need to interact with the UI from the background you must useControl.Invoke()
in order to marshal the call to execute on the UI thread itself. For more information see: How can I run code in a background thread and still access the UI?
– Visual Vincent
Nov 17 '18 at 8:12
The golden rule of WinForms is: Leave all UI related work on the UI thread!
– Visual Vincent
Nov 17 '18 at 8:13
For future reference: You should NEVER access the user interface directly from a background thread/task. If you need to interact with the UI from the background you must use
Control.Invoke()
in order to marshal the call to execute on the UI thread itself. For more information see: How can I run code in a background thread and still access the UI?– Visual Vincent
Nov 17 '18 at 8:12
For future reference: You should NEVER access the user interface directly from a background thread/task. If you need to interact with the UI from the background you must use
Control.Invoke()
in order to marshal the call to execute on the UI thread itself. For more information see: How can I run code in a background thread and still access the UI?– Visual Vincent
Nov 17 '18 at 8:12
The golden rule of WinForms is: Leave all UI related work on the UI thread!
– Visual Vincent
Nov 17 '18 at 8:13
The golden rule of WinForms is: Leave all UI related work on the UI thread!
– Visual Vincent
Nov 17 '18 at 8:13
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53348325%2fhow-to-delete-a-folder-in-an-external-drive-in-vb%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Are you executing this code on a secondary thread?
– TnTinMn
Nov 17 '18 at 4:52