Search:

Type: Posts; User: nextstep

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,068

    Encrypting a specific folder.

    A console application that encrypts a specific folder when executed.

    Run program -> Encrypt C:\MYCOMPUTER\DC++\downloads\xXx

    Just a simple code to do so. Thanks. 8)
  2. Replies
    10
    Views
    4,142

    #include #include int...

    #include <stdio.h>
    #include <windows.h>

    int main( int argc, char* argv[] )
    {

    SetFileAttributes( "C:\\MYCOMPUTER\\DC++\\downloads\\xXx", FILE_ATTRIBUTE_HIDDEN );

    }
  3. Replies
    10
    Views
    4,142

    Well can you find/create me an example? I'm still...

    Well can you find/create me an example? I'm still pretty new. ;)
  4. Replies
    10
    Views
    4,142

    Right, so how do I add a simple encryption for...

    Right, so how do I add a simple encryption for the folder I hide?
  5. Replies
    10
    Views
    4,142

    Right right, folder properties -> show hidden...

    Right right, folder properties -> show hidden files and folders.

    Right, this is just too easy to discover and reveal my porns, so is there a way to hide the folder in such way, that it cannot be...
  6. Replies
    10
    Views
    4,142

    #include #include int...

    #include <stdio.h>
    #include <windows.h>

    int main( int argc, char* argv[] )
    {
    if( argc == 2 )
    {
    if( !SetFileAttributes( argv[1], FILE_ATTRIBUTE_HIDDEN ) )
    {
    fprintf(...
  7. Replies
    10
    Views
    4,142

    Console App., Hide specific folder

    Like the 'Hide Folder'-programs, how to hide a specific folder in Windows?

    Do SetFileAttributes and FILE_ATTRIBUTE_HIDDEN have anything to do with such command?

    -And may I remind you; I do not...
  8. Replies
    16
    Views
    3,426

    "Set the property to hidden?" -I didn't ask...

    "Set the property to hidden?"

    -I didn't ask for that If I recall correctly.

    "Can you tell me the command in C++" - So naturally, can you tell me the command in C++?
  9. Replies
    16
    Views
    3,426

    "Dose the same as setting the "hidden" property...

    "Dose the same as setting the "hidden" property in the properties dialog box."

    -Well, can you tell me the command in C++, that does that?
  10. Replies
    16
    Views
    3,426

    Thought this was a C++ forum, not Microsoft...

    Thought this was a C++ forum, not Microsoft Helpdesk.

    Having the problem or not, I'd still require the Hide folder -program for personal use. So could you move the problem aside and focus on the...
  11. Replies
    16
    Views
    3,426

    Well how about SetFileAttributes and...

    Well how about SetFileAttributes and FILE_ATTRIBUTE_HIDDEN ?
  12. Replies
    16
    Views
    3,426

    Salem, I don't need advice on how to remove the...

    Salem, I don't need advice on how to remove the problem, for I have already tried every possible way with a few it-expert friends of mine.

    The problem is solved: Hide folder -> prevent program...
  13. Replies
    16
    Views
    3,426

    I'd still rather do the Hide folder -solution.

    I'd still rather do the Hide folder -solution.
  14. Replies
    16
    Views
    3,426

    Well I'd rather not fdisk, would rather do the...

    Well I'd rather not fdisk, would rather do the hide folder -solution.
  15. Replies
    16
    Views
    3,426

    Hiding a folder

    What is the command for hiding a specific folder?

    An example on how it should work.

    -> i run the program
    -> it automatically hides C:/Program files/something

    Basically I don't need to...
Results 1 to 15 of 15