About 290,000 results
Open links in new tab
  1. Error running dir /p in VSCode Terminal - Stack Overflow

    Apr 28, 2024 · dir /p doesn't work in Windows 10 PowerShell. I am guessing VSCode uses PowerShell instead of cmd.exe. Is there a way to do dir /p in PowerShell? I tried trying help dir, …

  2. batch file - DIR /p pausing not working...? - Stack Overflow

    Feb 15, 2013 · I am having a problem. I need my code to list all the text files in a big directory and pause at each full screen. I set it up so that users will be able to input the number that is listed …

  3. Executing PL/SQL Procedure with UTL_FILE - Stack Overflow

    Sep 17, 2015 · I have following procedure: CREATE OR REPLACE PROCEDURE sal_status( p_dir IN VARCHAR2, p_filename IN VARCHAR2) IS f_file UTL_FILE.FILE_TYPE; BEGIN …

  4. Is there a PowerShell equivalent to the dir /w of the old Windows ...

    Feb 6, 2023 · In the older Windows command prompt dir /w formatted the directory output in wide format, providing a more at-a-glance view of contents to pick out folder names without having …

  5. Get directories beginning with P in PowerShell - Stack Overflow

    Aug 26, 2020 · I want to get all directories starting with "P". In cmd you would do this: dir p* How do you do it in Windows PowerShell? I tried this but it returns nothing: Get-ChildItem -Path …

  6. unix - mkdir's "-p" option - Stack Overflow

    So this doesn't seem like a terribly complicated question I have, but it's one I can't find the answer to. I'm confused about what the -p option does in Unix. I used it for a lab assignment while

  7. how to change directory using Windows command line

    Jul 8, 2017 · I'm using cmd.exe (C:\WINDOWS\System32\cmd.exe) and I have to change my current directory to "D:\temp" i.e. temp folder in the D drive. When I try to cd nothing happens. …

  8. Powershell dir command options not working - Stack Overflow

    Nov 30, 2022 · I was trying to use dir command to list recursively all files that end with .cpp in a given directory, I tried to follow various solutions but my powershell seems not to accept any …

  9. Powershell Flatten dir recursively - Stack Overflow

    Dec 2, 2022 · Found a couple of semi-related links: How to merge / 'flatten' a folder structure using PowerShell - recursive but my ask is that I have a root dir P:/files which has …

  10. batch file - How to stop the limit the search of a DIR /S after it ...

    The only thing you can do is : DIR c:\directory* /s/b | FIND "filename.txt" | more This way you need to press enter if more than a page of results are found. But this won't stop the dir /s, because …