Complex Question
-
Hi pals, I am trying to create a small utility which can block folders from direct access. For this purpose, I have a textbox in my form and a two buttons namely: browse and apply. Now, whenever the user clicks on browse, the Open file dialog box appears and whatever folder has been selected by the user is displayed in the textbox. Now, comes the major problem. In order to block the particular folder selected by the user, I have to generate two batch files (files with .bat extension) on the location of the folder, that has to be locked. Like if the folder to be blocked is in this 'C:\\myfolder\\subfolder\\lockfolder' location, where lockfolder is the particular folder which I have to lock, then in that case, I have to generate a batch file in 'C:\\my folder\\subfolder\' that will lock the folder 'lockfolder'. Any Idea how to do that..... please recommend. Sorry for my poor english, Cheers to you, Rajdeep.NET :)
For goodness sake man! Google for writing text files c#. You have learned to google by now surely?
Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”
-
Hi pals, I am trying to create a small utility which can block folders from direct access. For this purpose, I have a textbox in my form and a two buttons namely: browse and apply. Now, whenever the user clicks on browse, the Open file dialog box appears and whatever folder has been selected by the user is displayed in the textbox. Now, comes the major problem. In order to block the particular folder selected by the user, I have to generate two batch files (files with .bat extension) on the location of the folder, that has to be locked. Like if the folder to be blocked is in this 'C:\\myfolder\\subfolder\\lockfolder' location, where lockfolder is the particular folder which I have to lock, then in that case, I have to generate a batch file in 'C:\\my folder\\subfolder\' that will lock the folder 'lockfolder'. Any Idea how to do that..... please recommend. Sorry for my poor english, Cheers to you, Rajdeep.NET :)
-
For goodness sake man! Google for writing text files c#. You have learned to google by now surely?
Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”
Henry Minute wrote:
For goodness sake man! Google for writing text files c#. You have learned to google something by now surely?
Fixed that for you.
No trees were harmed in the sending of this message; however, a significant number of electrons were slightly inconvenienced. This message is made of fully recyclable Zeros and Ones
-
Hi pals, I am trying to create a small utility which can block folders from direct access. For this purpose, I have a textbox in my form and a two buttons namely: browse and apply. Now, whenever the user clicks on browse, the Open file dialog box appears and whatever folder has been selected by the user is displayed in the textbox. Now, comes the major problem. In order to block the particular folder selected by the user, I have to generate two batch files (files with .bat extension) on the location of the folder, that has to be locked. Like if the folder to be blocked is in this 'C:\\myfolder\\subfolder\\lockfolder' location, where lockfolder is the particular folder which I have to lock, then in that case, I have to generate a batch file in 'C:\\my folder\\subfolder\' that will lock the folder 'lockfolder'. Any Idea how to do that..... please recommend. Sorry for my poor english, Cheers to you, Rajdeep.NET :)
.bat files are just renamed text files. Look into the StreamWriter class
-
Henry Minute wrote:
For goodness sake man! Google for writing text files c#. You have learned to google something by now surely?
Fixed that for you.
No trees were harmed in the sending of this message; however, a significant number of electrons were slightly inconvenienced. This message is made of fully recyclable Zeros and Ones
-
Hi pals, I am trying to create a small utility which can block folders from direct access. For this purpose, I have a textbox in my form and a two buttons namely: browse and apply. Now, whenever the user clicks on browse, the Open file dialog box appears and whatever folder has been selected by the user is displayed in the textbox. Now, comes the major problem. In order to block the particular folder selected by the user, I have to generate two batch files (files with .bat extension) on the location of the folder, that has to be locked. Like if the folder to be blocked is in this 'C:\\myfolder\\subfolder\\lockfolder' location, where lockfolder is the particular folder which I have to lock, then in that case, I have to generate a batch file in 'C:\\my folder\\subfolder\' that will lock the folder 'lockfolder'. Any Idea how to do that..... please recommend. Sorry for my poor english, Cheers to you, Rajdeep.NET :)
I'm getting very suspicious about what you're trying to do. I would suggest that people here stop helping you until answer the question I asked in my last post to you[^].
Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia)
Why are you using VB6? Do you hate yourself? (Christian Graus) -
.bat files are just renamed text files. Look into the StreamWriter class
-
... or the File.WriteAllText[^] method.
Despite everything, the person most likely to be fooling you next is yourself.
-
Hi pals, I am trying to create a small utility which can block folders from direct access. For this purpose, I have a textbox in my form and a two buttons namely: browse and apply. Now, whenever the user clicks on browse, the Open file dialog box appears and whatever folder has been selected by the user is displayed in the textbox. Now, comes the major problem. In order to block the particular folder selected by the user, I have to generate two batch files (files with .bat extension) on the location of the folder, that has to be locked. Like if the folder to be blocked is in this 'C:\\myfolder\\subfolder\\lockfolder' location, where lockfolder is the particular folder which I have to lock, then in that case, I have to generate a batch file in 'C:\\my folder\\subfolder\' that will lock the folder 'lockfolder'. Any Idea how to do that..... please recommend. Sorry for my poor english, Cheers to you, Rajdeep.NET :)
-
So, just to recap. You're trying to: a) Copy the currently running exe b) Hide the console window c) Block access to a folder If this isn't something you shouldn't be writing then im the pope.
J4amieC wrote:
then im the pope.
Cool, can I borrow your ferrari please :-D (I was also looking at his profile to see what exactly he is up to and I does seems like this program isn't on the safe side of things.)
-
So, just to recap. You're trying to: a) Copy the currently running exe b) Hide the console window c) Block access to a folder If this isn't something you shouldn't be writing then im the pope.
-
Hi pals, I am trying to create a small utility which can block folders from direct access. For this purpose, I have a textbox in my form and a two buttons namely: browse and apply. Now, whenever the user clicks on browse, the Open file dialog box appears and whatever folder has been selected by the user is displayed in the textbox. Now, comes the major problem. In order to block the particular folder selected by the user, I have to generate two batch files (files with .bat extension) on the location of the folder, that has to be locked. Like if the folder to be blocked is in this 'C:\\myfolder\\subfolder\\lockfolder' location, where lockfolder is the particular folder which I have to lock, then in that case, I have to generate a batch file in 'C:\\my folder\\subfolder\' that will lock the folder 'lockfolder'. Any Idea how to do that..... please recommend. Sorry for my poor english, Cheers to you, Rajdeep.NET :)
Rajdeep.NET wrote:
I am trying to create a small utility which can block folders from direct access.
Yeah, with you're skill level, and total lack of knowledge in how Windows works, you're never going to pull this off.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008