How do you get a list of all directories in Windows10 Quick Access c#
I'm trying to get a list of all directories in Windows 10 Quick Access.
by directories, I mean the string(directory) that can be used with
foreach (var p in directories)
{var d = new DirectoryInfo(directory);}
this is a c# .net project
c# .net windows-10-desktop directoryinfo
|
show 1 more comment
I'm trying to get a list of all directories in Windows 10 Quick Access.
by directories, I mean the string(directory) that can be used with
foreach (var p in directories)
{var d = new DirectoryInfo(directory);}
this is a c# .net project
c# .net windows-10-desktop directoryinfo
This question may help
– stuartd
Nov 23 '18 at 10:34
It's an interesting question. Can I ask why you need this list?
– Neil
Nov 23 '18 at 10:37
@Neil. It is a list of common paths used by the user.
– Shahar Zoleha
Nov 25 '18 at 11:47
I know what it is. I'm wondering what your purpose is for using it.
– Neil
Nov 25 '18 at 18:41
I know what it is. I'm wondering what your purpose is for using it.
– Neil
Nov 25 '18 at 18:41
|
show 1 more comment
I'm trying to get a list of all directories in Windows 10 Quick Access.
by directories, I mean the string(directory) that can be used with
foreach (var p in directories)
{var d = new DirectoryInfo(directory);}
this is a c# .net project
c# .net windows-10-desktop directoryinfo
I'm trying to get a list of all directories in Windows 10 Quick Access.
by directories, I mean the string(directory) that can be used with
foreach (var p in directories)
{var d = new DirectoryInfo(directory);}
this is a c# .net project
c# .net windows-10-desktop directoryinfo
c# .net windows-10-desktop directoryinfo
asked Nov 23 '18 at 10:12
Shahar ZolehaShahar Zoleha
12
12
This question may help
– stuartd
Nov 23 '18 at 10:34
It's an interesting question. Can I ask why you need this list?
– Neil
Nov 23 '18 at 10:37
@Neil. It is a list of common paths used by the user.
– Shahar Zoleha
Nov 25 '18 at 11:47
I know what it is. I'm wondering what your purpose is for using it.
– Neil
Nov 25 '18 at 18:41
I know what it is. I'm wondering what your purpose is for using it.
– Neil
Nov 25 '18 at 18:41
|
show 1 more comment
This question may help
– stuartd
Nov 23 '18 at 10:34
It's an interesting question. Can I ask why you need this list?
– Neil
Nov 23 '18 at 10:37
@Neil. It is a list of common paths used by the user.
– Shahar Zoleha
Nov 25 '18 at 11:47
I know what it is. I'm wondering what your purpose is for using it.
– Neil
Nov 25 '18 at 18:41
I know what it is. I'm wondering what your purpose is for using it.
– Neil
Nov 25 '18 at 18:41
This question may help
– stuartd
Nov 23 '18 at 10:34
This question may help
– stuartd
Nov 23 '18 at 10:34
It's an interesting question. Can I ask why you need this list?
– Neil
Nov 23 '18 at 10:37
It's an interesting question. Can I ask why you need this list?
– Neil
Nov 23 '18 at 10:37
@Neil. It is a list of common paths used by the user.
– Shahar Zoleha
Nov 25 '18 at 11:47
@Neil. It is a list of common paths used by the user.
– Shahar Zoleha
Nov 25 '18 at 11:47
I know what it is. I'm wondering what your purpose is for using it.
– Neil
Nov 25 '18 at 18:41
I know what it is. I'm wondering what your purpose is for using it.
– Neil
Nov 25 '18 at 18:41
I know what it is. I'm wondering what your purpose is for using it.
– Neil
Nov 25 '18 at 18:41
I know what it is. I'm wondering what your purpose is for using it.
– Neil
Nov 25 '18 at 18:41
|
show 1 more comment
1 Answer
1
active
oldest
votes
Derive from this case. Currently there is no such api that provide to access Quick Access
visual folder programmatically .
If you have a platform capability or API suggestion, please continue to post them to the Windows platform developer UserVoice site. Please note that Microsoft will be updating this site to reflect the new capabilities of Windows 10.
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%2f53444674%2fhow-do-you-get-a-list-of-all-directories-in-windows10-quick-access-c-sharp%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
Derive from this case. Currently there is no such api that provide to access Quick Access
visual folder programmatically .
If you have a platform capability or API suggestion, please continue to post them to the Windows platform developer UserVoice site. Please note that Microsoft will be updating this site to reflect the new capabilities of Windows 10.
add a comment |
Derive from this case. Currently there is no such api that provide to access Quick Access
visual folder programmatically .
If you have a platform capability or API suggestion, please continue to post them to the Windows platform developer UserVoice site. Please note that Microsoft will be updating this site to reflect the new capabilities of Windows 10.
add a comment |
Derive from this case. Currently there is no such api that provide to access Quick Access
visual folder programmatically .
If you have a platform capability or API suggestion, please continue to post them to the Windows platform developer UserVoice site. Please note that Microsoft will be updating this site to reflect the new capabilities of Windows 10.
Derive from this case. Currently there is no such api that provide to access Quick Access
visual folder programmatically .
If you have a platform capability or API suggestion, please continue to post them to the Windows platform developer UserVoice site. Please note that Microsoft will be updating this site to reflect the new capabilities of Windows 10.
answered Nov 26 '18 at 6:00
Nico Zhu - MSFTNico Zhu - MSFT
10.5k1524
10.5k1524
add a comment |
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%2f53444674%2fhow-do-you-get-a-list-of-all-directories-in-windows10-quick-access-c-sharp%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
This question may help
– stuartd
Nov 23 '18 at 10:34
It's an interesting question. Can I ask why you need this list?
– Neil
Nov 23 '18 at 10:37
@Neil. It is a list of common paths used by the user.
– Shahar Zoleha
Nov 25 '18 at 11:47
I know what it is. I'm wondering what your purpose is for using it.
– Neil
Nov 25 '18 at 18:41
I know what it is. I'm wondering what your purpose is for using it.
– Neil
Nov 25 '18 at 18:41