#Lutece0376. File System
File System
Migrated from Lutece 376 File System
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Taobao File System(TFS
) is a famous distributed file system consisted of thousands of servers storing and serving more than billion files. A lot of experts worked for this project, they are specialized in distributed system, Linux kernel, algorithm, etc. TFS
has been open-sourced since Sep 27th, 2010.
Totalfrank is studying Operation System recently, and he loves open-source project. He wants to work with talented people at Taobao TFS team. In order to get the offer, Totalfrank needs to finish a file system called Totax within 30 minutes. The file system should support the following operations:
cd Directory_Name
If there is a directory calledDirectory_Name
in current path, then move to the directory; else outputNo such directory!
and ignore this operation.cd ..
If there is a parent directory of current path, then move to the parent directory; else outputNo parent directory!
and ignore this operation.touch File_Name
If there is a file calledFile_Name
in current path, then outputFile already exists!
and ignore this operation; else create that file.rm File_Name
If there is a file calledFile_Name
in current path, then remove it; else outputNo such file!
and ignore this operation.mkdir Directory_Name
If there is a directory calledDirectory_Name
in current path, then outputDirectory already exists!
and ignore this operation; else create that directory and the current path doesn’t change.rmdir Directory_Name
If there is a directory calledDirectory_Name
in current path, then remove it and all items in it; else outputNo such directory!
and ignore this operation.ls
Show the file and directory list of current path. Each Item is displayed in a line likeItem_Name <Type>
.Item_Name
is the name of a file or a directory.Type
isD
when the item is a directory orF
when it’s a file. Items created earlier come first.
Note that, directory and file are two different objects and they may have the same name in the same directory. Two directories or two files may also have the same name in different paths.
At the very start, the current path is at root directory which hasn’t parent directory.
Input
The first line of the input is an integer (), which stands for the number of test cases you need to solve.
Each test case begins with an integer (), indicating the number of operations.
Then lines follow, every line is an operation specified before. Files’ name and directories’ name are consist of lowercase latin letters only and their length will be positive and no larger than .
Output
For every test case, you should output Case #k:
first in a single line, where indicates the case number and starts at . Then output the result of the operations.
Samples
2
3
mkdir standy
touch totalfrank
ls
6
mkdir standy
cd standy
touch totalfrank
cd ..
rm totalfrank
ls
Case #1:
standy <D>
totalfrank <F>
Case #2:
No such file!
standy <D>
Resources
The 9th UESTC Programming Contest Final