About 50 results
Open links in new tab
  1. What is the difference between a directory and a folder?

    Jul 16, 2021 · Folders are often depicted with icons which visually resemble physical file folders. Strictly speaking, there is a difference between a directory which is a file system concept, and the graphical …

  2. Command to list all files in a folder as well as sub-folders in windows ...

    Mar 11, 2015 · I tried searching for a command that could list all the file in a directory as well as subfolders using a command prompt command. I have read the help for "dir" command but coudn't …

  3. How do I navigate my Windows folders like C drive in MSYS?

    Sep 21, 2023 · How do I navigate through my Windows folder structure within the MSYS shell? When I start the shell, all I see is a '~'. I type 'ls' and the folder is empty. I just want to know how to get to my …

  4. Change NuGet package folders used by Visual Studio

    There is no more packages solution folder in any csproj or project.json-based .NET Core project. NuGet CLI gets the list of used cache folders: nuget locals all -list Response: http-cache: C:\\Us...

  5. How to embed a Google Drive folder in a web page - Stack Overflow

    Dec 19, 2013 · I have a folder in Google Drive that I'd like to embed in my web page. I can't find an embed code or anything documented in Google Drive Help articles.

  6. Why are these folders' share names appended with dollar signs?

    Jan 15, 2009 · Why are these folders' share names appended with dollar signs? Ask Question Asked 17 years, 2 months ago Modified 2 months ago

  7. Add existing folder(s) to project in Visual Studio - Stack Overflow

    Is there a way to add existing folders to a Visual Studio project so that I do not have to do this file by file? To make it clear: I want to add references not copies.

  8. Rules for "Date Modified" of folders in Windows Explorer

    How does Windows Explorer determine the "Date Modified" field for folders? [Aside: I know this is asking from an explorer-specific perspective, but the behaviour could be useful to coding search/sort

  9. branch - How do I remove local (untracked) files from the current Git ...

    Sep 14, 2008 · I need to delete only files/folders which are new and not in .gitignore @Kostanos If you don't want to remove files that are in .gitignore, then do not provide the -x flag. git clean -f :/ works as …

  10. python - Importing files from different folder - Stack Overflow

    I have this folder structure: application ├── app │ └── folder │ └── file.py └── app2 └── some_folder └── some_file.py How can I import a function from file.py, from within som...