Click here to Skip to main content
15,897,371 members
Everything / Folder

Folder

folder

Great Reads

by syed shanu
Getting started with .NET 6.0 and Standalone Angular Template in VS 2022
by Raj Kumar79
Create a new task and set up a IIS restart using Windows 10 Task Scheduler
by ToughDev
In order to facilitate transferring files from my main PC to my VirtualBox machine running MS-DOS 6.22, I installed Microsoft
by ToughDev
How to use NFS to transfer files between Windows and MS-DOS 6.22

Latest Articles

by Martin Henke (1971)
Edit Metadata for folders by using desktop.ini features
by ToughDev
How to use NFS to transfer files between Windows and MS-DOS 6.22
by ToughDev
In order to facilitate transferring files from my main PC to my VirtualBox machine running MS-DOS 6.22, I installed Microsoft
by ToughDev
How to fix PDF Export Issues while using a Scriptcase Grid app

All Articles

Sort by Score

Folder 

3 Sep 2018 by OriginalGriff
For starters, don't do it like that. To go up, it would have to proceed the exe file name: \RAF\bin\Debug\..\..\..\..\RAF.exe And since an initial backslash means "from the root directory" you can't go up that many levels anyway. But ... as I said, don't do that. The reason I say that is simple:...
7 Nov 2018 by OriginalGriff
Try the Path.Combine Method (System.IO) | Microsoft Docs[^] string fullPath = Path.Combine(yourPath, folderName);
12 May 2022 by OriginalGriff
Use the Path.GetDirectoryName Method (System.IO) | Microsoft Docs[^] It returns the full containing folder with no associated filename.
6 Jun 2022 by syed shanu
Getting started with .NET 6.0 and Standalone Angular Template in VS 2022
19 Feb 2023 by l o o l
@echo off cd /d "C:\Users\eddyw\Desktop\PAC_PNL Misc\PAC-MISC" pushd "C:\Users\eddyw\Desktop\PAC_PNL Misc\PAC-MISC\Test_Files" for %%i in (*.PAC)do PAC-MISC.exe -d . "%%~nxi" popd I have a feeling that the program already handles its argument...
6 Jul 2023 by Tim the Gamer
There is a method built into the Environment class that takes a special folder enum and returns the full path to that folder. The method is called GetFolderPath. You can use it in your code like. var path =...
4 Aug 2023 by Andre Oosthuizen
Not my expertise in the least but I found this very interesting. Some research later I found the following, whether it will solve your issue completely, I am not sure but it might point you in the right direction. First of all, a warning from...
31 Jan 2024 by Dave Kreskowiak
This is simple. You're trying to read the file before the copy process has completed and closed the file. You just have to TRY opening the file. If it throws an exception because it's in use already, wait a bit and try again. Keep trying until...
3 Sep 2018 by Galarist_00
I have two project folders. I demonstrate my folders: A Project_Folder - bin -- Debug (default folder if I use a path like : @"FileName" B Project_Folder - bin -- Debug --- RAF.exe So from the default folder (A Project_Folder) I would like to choose the RAF.exe file from the B section. What I...
7 Nov 2018 by MadMyche
You can try this out, which was written under the assumption that Table Student is in a database.... You can alter the DataTable source as you need. DataTable dt = new DataTable(); using (SqlConnection conn = new SqlConnection(YourConnectionString)) { SqlCommand cmd = new SqlCommand("SELECT...
8 Nov 2018 by Aydin Homay
Ok, let's assume that you have an entity called Studen and this entity has an attribute/property called ID and somehow you reach a point that you want to create a folder in file-system for your entity. Solution: //Model is your entity context which contains all students. Student student =...
16 Nov 2018 by Member 14056208
I have a little collection of movies placed in folders. I placed movie poster in each folder, and recently, I placed an icon (converted from that poster thru a software) in each folder, and i want that each folder will look from the icon placed in each of them. Is there a .bat file, or any...
9 Apr 2019 by Member 14221764
Hello Everyone, I have a software producing measurement data locally on C:\temp. Following are my goals: 1) I want only a specific software/application which creates the data, being able to write on C:\temp 2) I want NO USERS being able to modify or delete the data 3) I want to move (not...
9 Apr 2019 by Dave Kreskowiak
Quote: 1) I want only a specific software/application which creates the data, being able to write on C:\temp Not possible. You cannot assign permissions to application, only to user accounts. Applications run as the user that launches them and inherit the permissions of the user. If the user...
26 Aug 2019 by ganesh.dks
I am new to PHP but have experience in .net. I need to know a way to save images uploaded to a PHP page in a subdirectory of that page and return its path. I have checked and not found a way to give permission to an existing subdirectory in PHP. I am using wamp for development. passed...
30 Oct 2019 by RickZeeland
See: GitHub - Studio-42/elFinder: 📁 Open-source file manager for web, written in JavaScript using jQuery and jQuery UI[^] If this does not quite fit your needs, worry not, it's open source so you can change the source code any way you want :)
12 May 2022 by dejf111
Hi, I'm trying to create a path where I would save the newly created layers, but I have a problem with how to enter the path to the folder that contains the file I'm copying but I want to rename it. It occurred to me to cut it off, but it's...
22 Aug 2022 by Raj Kumar79
Create a new task and set up a IIS restart using Windows 10 Task Scheduler
18 Feb 2023 by Eddie Winch
Hi there, I have the following line of Code in a Batch File :- set "SourceFolder=C:\Users\eddyw\Desktop\PAC_PNL Misc\PAC-MISC\pacbob1940" for %%a in ("%SourceFolder%\*.PAC") do PAC-MISC.exe -d Test_Files "%%a" The Batch File runs a C...
10 Feb 2023 by Dave Kreskowiak
First, the SET statement does not need the quotes around it at all. Next, the problem is going to be with the command you're running as part of the FOR statement, or the batch files ability to find the command. Is the batch file in the same...
10 Feb 2023 by Richard MacCutchan
You have a space character in the directory path, which will cause the path passed in the for statement to be interpreted as "C:\Users\eddyw\Desktop\PAC_PNL". Try changing the set statement to the following, removing the double quote in front of...
7 May 2023 by ToughDev
In order to facilitate transferring files from my main PC to my VirtualBox machine running MS-DOS 6.22, I installed Microsoft
7 May 2023 by ToughDev
How to use NFS to transfer files between Windows and MS-DOS 6.22
7 May 2023 by ToughDev
How to fix PDF Export Issues while using a Scriptcase Grid app
4 Aug 2023 by lvTH
Due to some user misbehaving I have now a Windows 10 pc where several files/folders have quite long names, and containing Unicode chars in a folder structure very deep (>10 levels) The problem is that even after applying "LongPathsEnabled"...
31 Jan 2024 by dageraad
My program consists of the following steps: 1. read in any new image from a source folder 2. process image (detect objects and deskew them) 3. save deskewed object images in a target folder ...repeat The idea is that while scanning stamps the...
23 Feb 2024 by Martin Henke (1971)
Edit Metadata for folders by using desktop.ini features
30 Nov 2017 by John Torjo
Easily read and write files from/to any Android Phone/Tablet/iPhone/iPad connected via USB.
10 Feb 2022 by ferdrodrigues
Implementation of a folder tree in front-end and back-end
5 Jul 2023 by bjwaldo
Ha... I figured it myself.. Just had to go about it a bit differently. private void btn4_Click(object sender, RoutedEventArgs e) { FolderBrowserDialog folderselect = new FolderBrowserDialog(); if...
8 Nov 2018 by StudentSC
I create folder but I'd like to name you this way. What I have tried: I create folder but I'd like to name you this way. For example Table Student ID NAME SURNAME 1 Alex John Code is: string folder="StudentInformation"; Directory.CreateDirectory(Path +...
18 Nov 2018 by Member 14056208
@CHill60 thanks for the reply. I tried If [%1] == [] goto :eof ECHO [.ShellClassInfo] >%1\desktop.in ECHO IconResource=C:\icon.ico,0 >>%1\desktop.in move %1\desktop.in %1\desktop.ini attrib +S +H %1\desktop.ini attrib +R %1 but may question is this if I may, in the code the location of icon...
30 Oct 2019 by Member 10850253
I want to make an image gallery in JavaScript, that has folder icons, and inside those folders, it has the image thumbnails and other folders What I want to accomplish, is a way to view the images on my site, like in windows explorer preview Any help or suggestions, will be appreciated. Thanks...
6 Jul 2023 by bjwaldo
The issue I am having is I get an error "Cannot implicitly convert type System.Environment.SpecialFolder to String". Everything is working great except for btn4 where the error is. Line 61 is the issue " if (windir = folderselect.RootFolder) "...
6 Aug 2023 by lvTH
Thanks for your suggestions, doing a more deep search I've found another sowftare (Bulk Rename Utility - Free File Renaming Software[^] ), which uses regex to specify find/replace of strings, so I can remove all Unicode chars, those NOT...