answersLogoWhite

0

Actually, you can write in a file directory. It just takes "extra effort" to get to where you can do that. There is a reason that "blocks" are in place, and the reason is that fooling around with a file directory is a great way to "mess up" your computer.

No judgment is being passed here, but most computer types would suggest that if you have to ask about this you almost certainly shouldn't be attempting the activity. It may be suggested that some reading on computer file directories and what they are used for be done by someone before that person attempts to modify said directory. If you are smart enough to pick up the necessary information that will make you a "competent" file directory "editor" then you are smart enough to realize that you shouldn't be making trouble for yourself by plunging into something like this without getting up to speed first. Good luck.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What special permission should be set on public directories to prevent users from deleting files that others users have contributed?

In UNIX, this is the "sticky bit"... if set on a directory, only the owner of the directory, the owner of the individual file, and the superuser are allowed to delete files created in that directory. If not set, anyone with write permission on the directory can delete or rename files in it.


How do you make a batch file to move files?

in your batch file type: Move (the directory or folder and the file) space (the directory you want it in) example: move "C:\Users\%username%\Desktop\text.txt" "C:\Users\%username% You can change the %username% to your username but %username%is the variable for your username


What permissions does Linux have on files and directories?

Each file and directory can be marked read-only, writable, and executable. Each file / directory will contain three sets of permissions that can be marked as such, namely the owner, other users in the owners group, and users not in the group.


Where is the directory of medal of honor 2010 save file?

In Windows7 your save game directory is: C:\Users"Your profile"\EA Games\Medal of Honor


What is active root directory?

The active root directory refers to the primary directory in a file system that is currently in use or being accessed by the operating system. It serves as the starting point for file path navigation, allowing users and applications to locate and manage files and subdirectories within that hierarchy. This concept is crucial in systems like UNIX or Linux, where users can change the active root directory using commands like cd. In essence, it represents the context in which file operations are performed.


Is the hidden file in the users home directory that is the configuration file for bash is bash profile?

The bash shell uses a hidden file called .bashrc for settings in the shell upon startup.


What was the first Microsoft file system to support directory level compression?

The first Microsoft file system to support directory-level compression was NTFS (New Technology File System). Introduced with Windows NT 3.1 in 1993, NTFS allowed users to compress individual files or entire directories, optimizing storage space while maintaining file accessibility. This feature provided significant advantages for managing larger volumes of data efficiently.


In Unix what is the command for Displaying whether a file is a simple file or a directory?

Use the file type test: if [ -d $file ]; then echo $file is a directory elif [ -f $file ]; then echo $file is a file else echo $file is not a directory or a file fi


What does drwxrw-r-- in Linux mean?

This is a display of file permissions. In particular, it means:drwxrw-r-- - The specified object is a directory, not a filedrwxrw-r-- - The file / directory can be read by its ownerdrwxrw-r-- - The file / directory can be modified by its ownerdrwxrw-r-- - The file / directory can be executed as a binary by its ownerdrwxrw-r-- - The file / directory can be read by members of the specified groupdrwxrw-r-- - The file / directory can be modified by members of the specified group.drwxrw-r-- - The file / directory cannot be executed by members of the specified group.drwxrw-r-- - The file / directory can be read by others not in the group.drwxrw-r-- - The file / directory cannot be modified by others not in the group.drwxrw-r-- - The file / directory cannot be executed by others not in the group.


Put file in the same directory as my HTML file?

Yes you need to put the file in the same directory. This will get the file to be executed from the HTML file.


Write a shell program using the if-the-else to test whether a variable name is a directory or a file?

# shell script example if [ -f $1 ]; then echo $1 is a file elsif [ -d $1 ]; then echo $1 is a directory fi


Write a Linux command to print the content of a given directory to a given file?

ls /this/dir/path > dirfile