VBA: How to know everything about the file folder ShowVBA: How to know everything about the file folder
Preliminaries
In module
In sheet1 module
Preliminaries
Open a new workbook
Add a module
In module
' Declare variables for wizard.
Public balloon1 As Balloon
Public balloon2...
How to read and create a BIN and CUE file? ShowHow to read and create a BIN and CUE file?
What is a BIN file?
How to create BIN and CUE files
How to burn BIN and CUE files
How to read/convert BIN and CUE files
What is a BIN file?
A BIN and CUE file together create a binary...
Creating an empty file ShowCreating an empty file
To create an empty file, type the following command:
> file
You can also use the touch command:
touch file
Create your own command on linux ShowCreate your own command on linux
Creating a Bash script
Turning the command active (Executable)
Creating a Bash script
It’s important to create a Bash script which will run your command.
Let’s see:
#!/bin/bash
#on displays the...
UNIX - Files ShowIntroduction to UNIX files
In UNIX systems any element is represented in the form of a file. All files are architectured around a single tree structure where the base, called the root, is written "/".
File types
UNIX systems define different...
MS DOS Files and directories ShowFiles in MS DOS
In a computers data is stored in files. When you run a
program, MS-DOS processes the data stored in the file and passes it to the system. In MS-DOS a file can be any
size, however the file name is more restricted, it can only have...
Sharing and permissions in Windows NT ShowIntroduction to folder sharing
Sharing allows resources to be designated as being available to all users over a network. When a folder is shared, users can log into the folder from across the network and access the files within, as though the...