JPH06290095A - File managing device - Google Patents

File managing device

Info

Publication number
JPH06290095A
JPH06290095A JP5074103A JP7410393A JPH06290095A JP H06290095 A JPH06290095 A JP H06290095A JP 5074103 A JP5074103 A JP 5074103A JP 7410393 A JP7410393 A JP 7410393A JP H06290095 A JPH06290095 A JP H06290095A
Authority
JP
Japan
Prior art keywords
file
file management
management table
information
directory
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
JP5074103A
Other languages
Japanese (ja)
Inventor
Tomomichi Tamura
朋通 田村
Michio Fujiyama
道男 藤山
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Panasonic Holdings Corp
Original Assignee
Matsushita Electric Industrial Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Matsushita Electric Industrial Co Ltd filed Critical Matsushita Electric Industrial Co Ltd
Priority to JP5074103A priority Critical patent/JPH06290095A/en
Publication of JPH06290095A publication Critical patent/JPH06290095A/en
Pending legal-status Critical Current

Links

Landscapes

  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

PURPOSE:To make it possible to simply confirm the state of a file afterwards when the accessing can not be made to the file due to the erasing, movement or name change of the file by using a specific file managing device having a file management table. CONSTITUTION:The file management table 51 for describing the erasing, movement and name change of a file is prepared at every directory of the file managing device 5. The device 5 is also provided with a table registering means 52 for securing an area for storing file information in the table 51, a table updating means 53 for describing information relating to the file in the table 51 at the time of executing erasing or the like, a table referring means 54 for extracting data from the table 51 when the accessing can not be made to the file, and a table deleting means 55 for periodically deleting the information relating to the file from the table 51 when deletion or the like is executed. Consequently file processing can be smoothly advanced.

Description

【発明の詳細な説明】Detailed Description of the Invention

【0001】[0001]

【産業上の利用分野】本発明は、ファイル管理装置の中
でディレクトリ構成に変化があったときのファイル管理
装置の処理に関するものである。
BACKGROUND OF THE INVENTION 1. Field of the Invention The present invention relates to a process of a file management device when a directory structure is changed in the file management device.

【0002】[0002]

【従来の技術】ファイル管理装置(ここでは、代表的な
オペレーティングシステムであるUNIX(登録商標)
のファイル管理装置について述べる)で扱われるファイ
ルは、プロセスが外界との情報を交換するための共通の
オペレーション(読み込み,書き出し,位置付け,伸縮
等)を持つオブジェクト(ディスク上のデータ,磁気テー
プ,メモリ,ネットワーク,デバイス等)であると考え
ることができる。このオブジェクトに対してオペレーシ
ョンを要求するには、まずそのファイルを一意に識別す
る必要がある。UNIXのファイル自体はiノードと呼ばれ
る構造体で管理されていて、iノードの識別子がファイ
ルを識別するための基本要素となる。iノードには(表
1)のような情報が書かれている。
2. Description of the Related Art A file management device (here, a typical operating system UNIX (registered trademark))
The files handled by the above file management device) are objects (data on disk, magnetic tape, memory) that have common operations (read, write, position, stretch, etc.) for processes to exchange information with the outside world. , Networks, devices, etc.). To request an operation on this object, the file must first be uniquely identified. The UNIX file itself is managed by a structure called an inode, and the inode identifier is the basic element for identifying the file. Information such as (Table 1) is written in the inode.

【0003】[0003]

【表1】 [Table 1]

【0004】iノードは、UNIXのファイル管理装置の木
構造中のあらゆるファイルに対して必ず1つは存在す
る。そして一意に決まる番号で識別される。ファイル管
理装置では階層的なディレクトリ構造を用いて、このi
ノードにシンボリックな名前を定義し、上位レベルから
の識別を行うための名前空間を構成している。このシン
ボリック名(パス名)からiノード番号への変換は、UNIX
のカーネルによって行われ、その対応表を保持している
のがディレクトリである。図10は従来例におけるファイ
ル管理装置のディレクトリファイルの内部構成を示した
ものである。
There is always one inode for every file in the tree structure of the UNIX file management device. Then, it is identified by a uniquely determined number. The file management device uses a hierarchical directory structure to
A symbolic name is defined for the node, and a namespace for distinguishing from higher levels is constructed. The conversion from this symbolic name (path name) to the inode number is done by UNIX.
It is done by the kernel of and the directory holds the correspondence table. FIG. 10 shows the internal structure of the directory file of the file management device in the conventional example.

【0005】UNIXのファイルには、3つの代表的な種類
がある。二次記憶上のバイトの列として取り扱われる普
通のファイル,ファイル名とそのファイルの実体に関す
る情報が格納されている構造体であるiノードの番号が
対になっているディレクトリファイル,ハードウェア機
器に対応しているスペシャルファイルの3つである。そ
して、UNIXのファイル管理装置はユーザからは木構造
(階層構造)をしているように見え、この実体を形成して
いるのがディレクトリファイルである。ディレクトリフ
ァイルの中には、図11のようなエントリの集合が書き込
まれている。また、ファイルの名前付けは、この木構造
を基にパス名で行われる。すなわち「/vmunix/a」の
ように「/」でディレクトリを区切りながら目的のファ
イルを指定する。これによりUNIXにおけるファイル管理
装置は、その名前が一意に定まるように管理される。こ
こで実際にファイル管理装置がどのように目的のファイ
ルを探すか、その例を次に示す。
There are three typical types of UNIX files. Ordinary files that are handled as a sequence of bytes on secondary storage, directory files in which file names and inode numbers that are structures that store information about the substance of the files are paired, and hardware devices These are the three special files that are supported. And the file management device of UNIX is a tree structure from the user.
A directory file appears to have a (hierarchical structure) and forms this entity. A set of entries as shown in FIG. 11 is written in the directory file. The file is named by the path name based on this tree structure. That is, the target file is specified by separating directories with "/" like "/ vmunix / a". As a result, the file management device in UNIX is managed so that its name is uniquely determined. Here is an example of how the file management device actually searches for a target file.

【0006】例えば、「/」というディレクトリが図12
のような内容であるとすると、ここで/vmunixを探すた
めには次のような手順が必要となる(図13と併せて説
明)。
For example, the directory "/" is shown in FIG.
The following procedure is required to search for / vmunix here (explained in conjunction with FIG. 13).

【0007】(a) 「/」のiノードを見る。「/」の
iノード番号は、あらかじめ2番と定められているので
場所がわかる。
(A) Look at the inode of "/". Since the inode number of "/" is predetermined to be 2, the location can be known.

【0008】(b) iノードの中には、そのファイルの
種類,アクセス権,その実体の場所などが記述されてい
るので、次のことがわかる。すなわち、「/」は、ディ
レクトリであること、およびその実体の場所。
(B) Since the type of the file, the access right, the location of the substance, etc. are described in the inode, the following can be understood. That is, "/" is a directory and the location of its entity.

【0009】(c) 「/」は、ディレクトリであるの
で、その実体を見る。すると上で示したような名前とi
ノードの対が記述してあるので、/vmunixに対応するi
ノード番号10を得る。
(C) Since "/" is a directory, its entity is viewed. Then the name and i
Since the node pair is described, i corresponding to / vmunix
Get node number 10.

【0010】(d) /vmunixのiノードを見る。すると
次のことがわかる。すなわち、/vmunixは普通のファイ
ルであること、およびその実体の場所。
(D) Look at the vnode's inode. Then you will find the following. That is, / vmunix is an ordinary file and its location.

【0011】(e) その実体を見る。(E) Look at the substance.

【0012】もっと深いディレクトリに存在するファイ
ルを見る場合には、(b),(c),(d),(c),…を繰り返し
行うことで探すことができる。
When a file existing in a deeper directory is viewed, it can be searched by repeating (b), (c), (d), (c), ....

【0013】ファイル管理装置の特徴は整理すると次の
ようになる。UNIXのファイル管理装置は、UNIXが管理
している資源に一意の名前を付ける役割を果たしてい
る。その資源の中には、ディスク上に蓄えられた通常
のファイルとしてのソフトウェア資源の他に、ハードウ
ェア資源も含まれている。それらのすべての資源に対
するアクセス方法は、プログラムからコマンドからもそ
れぞれ定められた方法で統一的に扱うことができる。
新しいファイルを作るのは自由である。すなわち新しい
資源に名前を付けることが自由にできる。
The features of the file management device are summarized as follows. The UNIX file management device plays a role of giving a unique name to a resource managed by UNIX. The resources include hardware resources as well as software resources as ordinary files stored on the disk. The access method to all those resources can be handled uniformly by the method specified by the program and the command.
You are free to create new files. That is, you can freely name new resources.

【0014】[0014]

【発明が解決しようとする課題】しかしながら、従来の
ファイル管理装置では、ディレクトリおよびそのディレ
クトリ内のファイルに対するアクセス(読み,書き,実
行)が許可されていれば、だれでも自由にパス名を利用
してファイルの作成,消去,移動,名称変更ができる反
面、一旦ファイルが消去,移動,名称変更されるとファ
イル管理装置内の管理情報が変更され、前のパス名,フ
ァイル名ではそのファイルにアクセスできなくなってし
まう。このため複数のユーザがアクセスできるファイル
をあるユーザが勝手に消去,移動,名称変更してしまっ
た場合など、他のユーザはそのファイルにアクセスする
ことができず、実際にファイルがどうなったのか(消さ
れたのか、移動されたのか、名前が変わったのか)わか
らなくなってしまうという問題があった。本発明は上記
の問題を解決するものであり、ファイルの消去,移動,
名称変更が行われた後、そのファイルがどうなったかを
別のユーザが簡単に確認できるファイル管理装置を提供
することを目的とするものである。
However, in the conventional file management apparatus, as long as access (read, write, execute) to a directory and files in the directory is permitted, anyone can freely use the path name. You can create, delete, move, and rename the file, but once the file is deleted, moved, or renamed, the management information in the file management device is changed and you can access the file with the previous path name and file name. I can not do it. For this reason, when one user arbitrarily deletes, moves, or renames a file that can be accessed by multiple users, other users cannot access the file, and what happens to the file? There was a problem that I didn't know (whether it was erased, moved, or the name changed). The present invention solves the above problems by deleting, moving, and deleting files.
It is an object of the present invention to provide a file management device that allows another user to easily check what happened to a file after a name change.

【0015】[0015]

【課題を解決するための手段】上記目的を達成するため
に、本発明のファイル管理装置では、ファイル管理装置
の各ディレクトリごとにディレクトリ内のファイルの消
去,移動,名称変更に伴う情報を記述するためのファイ
ル管理テーブルを用意する。そしてファイルが作成され
たときにファイル管理テーブルにファイルに関する情報
を格納するための領域を確保するファイル管理テーブル
登録手段と、消去,移動,名称変更されたときのファイ
ルに関する情報をファイル管理テーブルに記述するため
のファイル管理テーブル更新手段と、ファイルにアクセ
スできないときに情報をファイル管理テーブルから抽出
するためのファイル管理テーブル参照手段と、削除,移
動,名称変更されたときのファイルに関する情報を定期
的にファイル管理テーブルから削除するためのファイル
管理テーブル削除手段とを設けるようにしたものであ
る。
In order to achieve the above object, in the file management apparatus of the present invention, information associated with erasing, moving and renaming of files in a directory is described for each directory of the file management apparatus. Prepare a file management table for Then, the file management table registration means that secures an area for storing information about the file in the file management table when the file is created, and the information about the file when erased, moved, or renamed are described in the file management table. A file management table updating means for updating the file, a file management table referring means for extracting information from the file management table when the file cannot be accessed, and information about the file when the file is deleted, moved, or renamed periodically. A file management table deleting means for deleting from the file management table is provided.

【0016】[0016]

【作用】したがって、本発明によって、ユーザはファイ
ルが消去,移動,名称変更されたことで目的のファイル
にアクセスできなかったときに、アクセスできなかった
ファイルを誰がいつ、どういう操作で、どうしたのかを
後から簡単に確認でき、確認することで次の操作への移
行がスムーズに行えるなど、ファイル処理を円滑に進め
ることができる。
Therefore, according to the present invention, when the user cannot access the target file because the file has been deleted, moved, or renamed, who, when, and what did the inaccessible file do? Can be easily confirmed later, and by confirming the transition to the next operation smoothly, file processing can proceed smoothly.

【0017】[0017]

【実施例】以下、本発明をその実施例を示す図面に基づ
き説明する。図1は本発明におけるファイル管理装置を
備えたコンピュータのブロック図である。図1におい
て、1は要求された情報を処理する中央処理装置、2は
ウィンドウ,グラフィック,文字などを表示する表示装
置、3は文字,数値などを入力する入力装置、4はオペ
レーティングシステム,ウィンドウシステムなど実行中
のプログラムを記憶する主記憶装置、5は本実施例にお
けるファイル管理装置、6はファイル管理装置5を記憶
するための二次記憶装置である。またファイル管理装置
5は、本発明において使用され、ファイルの現在の情報
を登録するためのファイル管理テーブル51、ファイルが
作成されたときにファイル管理テーブル51にファイルに
関する情報を格納するための領域を確保するファイル管
理テーブル登録手段52、消去,移動,名称変更されたと
きのファイルに関する情報をファイル管理テーブル51に
記述するためのファイル管理テーブル更新手段53、ファ
イルにアクセスできないときに情報をファイル管理テー
ブル51から抽出するためのファイル管理テーブル参照手
段54、削除,移動,名称変更されたときのファイルに関
する情報を定期的にファイル管理テーブル51から削除す
るためのファイル管理テーブル削除手段55からなる。
DESCRIPTION OF THE PREFERRED EMBODIMENTS The present invention will be described below with reference to the drawings showing its embodiments. FIG. 1 is a block diagram of a computer including a file management device according to the present invention. In FIG. 1, 1 is a central processing unit for processing requested information, 2 is a display device for displaying windows, graphics, characters, etc., 3 is an input device for inputting characters, numerical values, etc., 4 is an operating system, window system. A main storage device for storing a program being executed, 5 is a file management device in the present embodiment, and 6 is a secondary storage device for storing the file management device 5. The file management device 5 is used in the present invention, and has a file management table 51 for registering the current information of the file and an area for storing information about the file in the file management table 51 when the file is created. File management table registering means 52 for securing, file management table updating means 53 for describing information on files when deleted, moved or renamed in the file management table 51, information when files cannot be accessed file management table The file management table reference means 54 for extracting from the file 51, and the file management table deletion means 55 for periodically deleting the information about the file when it is deleted, moved, or renamed from the file management table 51.

【0018】以上のように構成されたコンピュータにお
いて、本発明のファイル管理装置5による実施例を以下
に説明する。まず本発明による手段の説明を行う前に、
ファイル管理装置5で用意されるファイル管理テーブル
51の説明を行う。ファイル管理テーブル51の構造は図2
に示すようになり、それぞれの項目は(表2)のような意
味を持つ。
An embodiment of the file management device 5 of the present invention in the computer configured as described above will be described below. First, before explaining the means according to the present invention,
File management table prepared by the file management device 5
51 will be explained. The structure of the file management table 51 is shown in FIG.
Each item has the meaning as shown in (Table 2).

【0019】[0019]

【表2】 [Table 2]

【0020】このファイル管理テーブル51はファイル管
理装置5によりディレクトリが作成されると同時に作成
され、また逆にディレクトリが消去されると同時にファ
イル管理テーブル51も消去される。したがってディレク
トリ1つに対してファイル管理テーブル51が1つ存在す
ることになる。
The file management table 51 is created at the same time when the directory is created by the file management device 5, and conversely, at the same time when the directory is deleted, the file management table 51 is also deleted. Therefore, one file management table 51 exists for each directory.

【0021】次に本発明の手段について、ファイル管理
テーブル登録手段52,ファイル管理テーブル更新手段5
3,ファイル管理テーブル参照手段54,ファイル管理テ
ーブル削除手段55の順に説明する。ファイル管理テーブ
ル登録手段52について、図3のフローチャートと併せて
説明する。まずディレクトリ構成に変化があった場合、
ファイル管理テーブル登録手段52が実行される。このフ
ァイル管理テーブル登録手段52では、最初にディレクト
リ構成にどのような変化があったかを調べる。もしディ
レクトリに新規にファイルが作成されたか(S1のYES)、
他のディレクトリからファイルが移動されたか(S2のYE
S)、あるいはファイル名が変更された(S3のYES)場合、
そのファイル名が既にファイル管理テーブル51に登録さ
れているか確認する(S4)。もし登録されていない場合
はディレクトリに新しく作成されたファイルに関する情
報を格納するための領域を確保する(S5)。次にその領
域にファイル名を書き込み、それ以外の項目には“新
規”と書き込む(S6)。もし既に登録されている場合
は、その領域に上書きする。上書きする手順は(S6)と
同じである。例えばディレクトリAにファイル名田村が
新規に作成された場合、ファイル管理テーブル51の内容
は図4に示すようになる。最後にファイル管理テーブル
削除手段55(この説明は後述)を実行する(S7)。
Next, regarding the means of the present invention, the file management table registration means 52 and the file management table update means 5
3, the file management table reference means 54, and the file management table deletion means 55 will be described in this order. The file management table registration means 52 will be described with reference to the flowchart of FIG. First, if there is a change in the directory structure,
The file management table registration means 52 is executed. The file management table registration means 52 first checks how the directory structure has changed. If a new file was created in the directory (YES in S1),
Was the file moved from another directory? (Y in S2
S), or if the file name has been changed (YES in S3),
It is confirmed whether the file name is already registered in the file management table 51 (S4). If it is not registered, an area for storing information on the newly created file is secured in the directory (S5). Next, the file name is written in that area, and "new" is written in the other items (S6). If already registered, overwrite that area. The procedure for overwriting is the same as (S6). For example, when the file name Tamura is newly created in the directory A, the contents of the file management table 51 are as shown in FIG. Finally, the file management table deleting means 55 (this description will be described later) is executed (S7).

【0022】ファイル管理テーブル更新手段53につい
て、図5のフローチャートと併せて説明する。まずディ
レクトリ構成に変化があった場合、ファイル管理テーブ
ル更新手段53が実行される。このファイル管理テーブル
更新手段53では、最初にディレクトリ構成にどのような
変化があったかを調べる。もしディレクトリに存在する
ファイルが消去されたか(S11のYES)、別のディレクト
リに移動されたか(S12のYES)、名称が変更された(S13
のYES)場合、該当するファイル名が登録され領域をファ
イル管理テーブル51から探す(S14)。この後、その領域
のファイル名以外の項目を更新する(S15)。更新は各項
目(操作,日時,ユーザ,結果)ごとに順に行う。例えば
ディレクトリAに新規に作成したファイル名田村が1993
年9月25日11時50分にユーザ梅津(ユーザID=100)によ
ってディレクトリBにファイル名藤山として移動された
場合、ファイル管理テーブル51の内容は図6に示すよう
になる。最後にファイル管理テーブル削除手段55(この
説明は後述)を実行する(S16)。
The file management table updating means 53 will be described with reference to the flowchart of FIG. First, when there is a change in the directory structure, the file management table updating means 53 is executed. The file management table updating means 53 first checks how the directory structure has changed. If the file existing in the directory is deleted (YES in S11), moved to another directory (YES in S12), or renamed (S13).
If YES, the corresponding file name is registered and the area is searched from the file management table 51 (S14). After that, the items other than the file name in the area are updated (S15). Update is performed for each item (operation, date, user, result) in order. For example, the file name Tamura newly created in directory A is 1993.
When the user Umezu (user ID = 100) moves to directory B as file name Fujiyama at 11:50 on September 25, 2013, the contents of the file management table 51 are as shown in FIG. Finally, the file management table deleting means 55 (this explanation will be described later) is executed (S16).

【0023】ファイル管理テーブル参照手段54につい
て、図7のフローチャートと併せて説明する。ファイル
管理テーブル参照手段54はユーザがコマンド,プログラ
ムなどによってディレクトリ内のファイルにアクセスし
たが、そのファイルにアクセスできない状態が発生した
場合に実行される。このファイル管理テーブル参照手段
54は、まずアクセスできなかったファイル名を基に、フ
ァイル管理テーブル51から、フィル名が登録された領域
を探す(S21)。もしここで登録された領域があった場合
(S22のYES)、その領域に記述される各項目(操作,日
時,ユーザ,結果)の内容を項目別に抽出する(S23)。
この後、抽出した内容を結果として返す(S24)。返され
た内容はコマンド,プログラムなどによって表示装置2
に表示させることで、ディレクトリから目的のファイル
がなくなっていても、そのファイルがどうなったのかを
表示結果から簡単に確認できるようになる。最後にファ
イル管理テーブル削除手段55(この説明は後述)を実行す
る(S25)。
The file management table reference means 54 will be described with reference to the flowchart of FIG. The file management table reference means 54 is executed when a user accesses a file in the directory by a command, a program, or the like, but the file cannot be accessed. This file management table reference means
First, 54 searches the file management table 51 for an area in which the file name is registered based on the file name that could not be accessed (S21). If there is an area registered here
(YES in S22), the content of each item (operation, date and time, user, result) described in the area is extracted for each item (S23).
Then, the extracted contents are returned as a result (S24). The returned contents are displayed on the display device 2 by commands, programs, etc.
By displaying in, even if the target file disappears from the directory, you can easily check what happened to the file from the display results. Finally, the file management table deleting means 55 (this description will be described later) is executed (S25).

【0024】ファイル管理テーブル削除手段55につい
て、図8のフローチャートと併せて説明する。ファイル
管理テーブル削除手段55は実行することで、ファイル管
理テーブル51に登録されている領域の中で更新されてい
る(ディレクトリ内にファイルが存在しない)領域に関し
ては、情報を一定期間、ファイル管理テーブル51内に保
持した後は、ファイル管理テーブル51からこれらの領域
をすべて削除する。これによりファイル管理テーブル51
が無限に増大するのを防ぐことができる。ファイル管理
テーブル削除手段55は、まず最初に現在の日時を抽出す
る(S31)。次にファイル管理テーブル51に登録される領
域の中から更新されている(ディレクトリ内にファイル
が存在しない)領域を探し、日時項目の内容を抽出する
(S32)。ファイル管理テーブル51を最後まで調べれば終
了する。現在の日時と抽出した時間が一定期間(一日,
一週間,一ヵ月)以上開いているか調べる(S33)。もし
開いていれば、その領域をファイル管理テーブル51から
削除する(S34)。例えばファイル管理テーブル51が図9
(a)に示す状態のとき、ディレクトリAにファイル名bbb
を1993年6月30日11時00分に新規に作成した場合、ファ
イル管理テーブル51のファイルaaaの領域は削除され、
図9(b)に示すように変化する(このとき、ファイル管理
テーブル登録手段52が実行される)。この後、ファイル
管理テーブル51のすべての領域を調べる(S35)まで、S
32,S33,S34が繰り返される。
The file management table deleting means 55 will be described with reference to the flowchart of FIG. By executing the file management table deleting means 55, information is updated for a certain period of time in the file management table regarding the area updated in the area registered in the file management table 51 (the file does not exist in the directory). After holding in 51, all these areas are deleted from the file management table 51. This allows the file management table 51
Can be prevented from increasing infinitely. The file management table deleting means 55 first extracts the current date and time (S31). Next, search the updated area (the file does not exist in the directory) from the areas registered in the file management table 51, and extract the contents of the date and time item.
(S32). When the file management table 51 is checked to the end, the process ends. The current date and time and the extracted time are for a certain period (one day,
Check if it is open for more than one week, one month) (S33). If it is open, the area is deleted from the file management table 51 (S34). For example, the file management table 51 is shown in FIG.
In the state shown in (a), the file name bbb is stored in directory A.
When a new file is created at 11:00 on June 30, 1993, the file aaa area of the file management table 51 is deleted,
It changes as shown in FIG. 9B (at this time, the file management table registration means 52 is executed). After this, until all areas of the file management table 51 are checked (S35), S
32, S33, S34 are repeated.

【0025】[0025]

【発明の効果】上記実施例から明らかなように、本発明
におけるファイル管理装置を用いることで、ファイルの
消去,移動,名称変更でファイルにアクセスできなくな
ったときに、ファイルが実際にどうなったのかを後から
簡単に確認が行えるようになり、ファイル処理を円滑に
進めることができる等の効果を有する。
As is apparent from the above embodiment, by using the file management device of the present invention, what happens to the file when it becomes inaccessible due to deletion, movement, or name change of the file. It becomes possible to easily confirm whether or not the file has been processed, and the file processing can be smoothly performed.

【図面の簡単な説明】[Brief description of drawings]

【図1】本発明の一実施例におけるコンピュータの構成
図である。
FIG. 1 is a configuration diagram of a computer according to an embodiment of the present invention.

【図2】本発明の一実施例におけるファイル管理テーブ
ルを示す図である。
FIG. 2 is a diagram showing a file management table according to an embodiment of the present invention.

【図3】本発明の一実施例におけるファイル管理テーブ
ル登録手段のフローチャートである。
FIG. 3 is a flowchart of a file management table registration means in one embodiment of the present invention.

【図4】本発明の一実施例におけるファイル管理テーブ
ル登録手段による一例を説明する図である。
FIG. 4 is a diagram illustrating an example of a file management table registration unit according to an exemplary embodiment of the present invention.

【図5】本発明の一実施例におけるファイル管理テーブ
ル更新手段のフローチャートである。
FIG. 5 is a flowchart of a file management table updating means in an embodiment of the present invention.

【図6】本発明の一実施例におけるファイル管理テーブ
ル更新手段による一例を説明する図である。
FIG. 6 is a diagram illustrating an example of a file management table updating unit according to an embodiment of the present invention.

【図7】本発明の一実施例におけるファイル管理テーブ
ル参照手段のフローチャートである。
FIG. 7 is a flowchart of a file management table reference means in one embodiment of the present invention.

【図8】本発明の一実施例におけるファイル管理テーブ
ル削除手段のフローチャートである。
FIG. 8 is a flowchart of a file management table deleting means according to an embodiment of the present invention.

【図9】本発明の一実施例におけるファイル管理テーブ
ル削除手段による一例を説明する図である。
FIG. 9 is a diagram illustrating an example of a file management table deleting unit according to an embodiment of the present invention.

【図10】従来例におけるファイル管理装置のディレク
トリを表す概念図である。
FIG. 10 is a conceptual diagram showing a directory of a file management device in a conventional example.

【図11】従来例におけるファイル管理装置のディレク
トリファイルの内部構成図である。
FIG. 11 is an internal configuration diagram of a directory file of a file management device in a conventional example.

【図12】従来例におけるファイル管理装置のファイル
へアクセスする方法を表す外面図である。
FIG. 12 is an external view showing a method of accessing a file of a file management device in a conventional example.

【図13】従来例におけるファイル管理装置のファイル
へ実際にどのようにアクセスするか手順を示す図であ
る。
FIG. 13 is a diagram showing a procedure of how to actually access a file of a file management device in a conventional example.

【符号の説明】[Explanation of symbols]

1…中央処理装置、 2…表示装置、 3…入力装置、
4…主記憶装置、 5…ファイル管理装置、 6…二
次記憶装置、 51…ファイル管理テーブル、 52…ファ
イル管理テーブル登録手段、 53…ファイル管理テーブ
ル更新手段、 54…ファイル管理テーブル参照手段、
55…ファイル管理テーブル削除手段。
1 ... Central processing unit, 2 ... Display device, 3 ... Input device,
4 ... Main storage device, 5 ... File management device, 6 ... Secondary storage device, 51 ... File management table, 52 ... File management table registration means, 53 ... File management table updating means, 54 ... File management table reference means,
55 ... File management table deleting means.

Claims (1)

【特許請求の範囲】[Claims] 【請求項1】 要求された情報を処理する中央処理装置
と、ウィンドウ,グラフィック,文字などを表示する表
示装置と、文字,数値などを入力する入力装置と、O
S,ウィンドウシステムなど実行中のプログラムを記憶
する主記憶装置と、ファイル管理装置を記憶するための
二次記憶装置からなるコンピュータにおいて、前記ファ
イル管理装置にファイルの現在の情報を登録するための
ファイル管理テーブルを用意し、ファイルが作成された
ときに前記ファイル管理テーブルにファイルに関する情
報を格納するための領域を確保するファイル管理テーブ
ル登録手段と、消去,移動,名称変更されたときのファ
イルに関する情報を前記ファイル管理テーブルに記述す
るためのファイル管理テーブル更新手段と、ファイルに
アクセスできないときに情報を前記ファイル管理テーブ
ルから抽出するためのファイル管理テーブル参照手段
と、削除,移動,名称変更されたときのファイルに関す
る情報を定期的に前記ファイル管理テーブルから削除す
るためのファイル管理テーブル削除手段を備えたことを
特徴とするファイル管理装置。
1. A central processing unit for processing requested information, a display unit for displaying windows, graphics, characters, etc., an input unit for inputting characters, numerical values, etc.
A file for registering current information of a file in the file management device in a computer including a main storage device for storing a running program such as S and window system and a secondary storage device for storing the file management device A file management table registration means that prepares a management table and secures an area for storing information about the file in the file management table when the file is created, and information about the file when erased, moved, or renamed File management table updating means for describing the file in the file management table, file management table reference means for extracting information from the file management table when a file cannot be accessed, and when deleted, moved, or renamed Information about files in regular File management apparatus characterized by comprising a file management table deletion means for deleting from the file management table.
JP5074103A 1993-03-31 1993-03-31 File managing device Pending JPH06290095A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP5074103A JPH06290095A (en) 1993-03-31 1993-03-31 File managing device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP5074103A JPH06290095A (en) 1993-03-31 1993-03-31 File managing device

Publications (1)

Publication Number Publication Date
JPH06290095A true JPH06290095A (en) 1994-10-18

Family

ID=13537523

Family Applications (1)

Application Number Title Priority Date Filing Date
JP5074103A Pending JPH06290095A (en) 1993-03-31 1993-03-31 File managing device

Country Status (1)

Country Link
JP (1) JPH06290095A (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH09198431A (en) * 1996-01-16 1997-07-31 Matsushita Electric Ind Co Ltd Personal information managing device and method therefor
JP2008077214A (en) * 2006-09-19 2008-04-03 Ricoh Co Ltd Document management server, document management method, and program
JP2008262561A (en) * 2007-04-09 2008-10-30 Internatl Business Mach Corp <Ibm> System and method for aiding file search and file operation by indexing historical file names and locations

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH09198431A (en) * 1996-01-16 1997-07-31 Matsushita Electric Ind Co Ltd Personal information managing device and method therefor
JP2008077214A (en) * 2006-09-19 2008-04-03 Ricoh Co Ltd Document management server, document management method, and program
JP4588006B2 (en) * 2006-09-19 2010-11-24 株式会社リコー Document management server, document management method, and program
JP2008262561A (en) * 2007-04-09 2008-10-30 Internatl Business Mach Corp <Ibm> System and method for aiding file search and file operation by indexing historical file names and locations

Similar Documents

Publication Publication Date Title
US7640406B1 (en) Detecting and managing orphan files between primary and secondary data stores for content addressed storage
US7685177B1 (en) Detecting and managing orphan files between primary and secondary data stores
US5454101A (en) Data storage system with set lists which contain elements associated with parents for defining a logical hierarchy and general record pointers identifying specific data sets
US6061678A (en) Approach for managing access to large objects in database systems using large object indexes
US9256607B2 (en) Efficient file access in a large repository using a two-level cache
US6738790B1 (en) Approach for accessing large objects
US8346728B2 (en) Snapshot indexing
US6535869B1 (en) Increasing efficiency of indexing random-access files composed of fixed-length data blocks by embedding a file index therein
US9710501B2 (en) Enhanced performance for large versioned databases
US7260578B2 (en) Database-file link system and method therefor
US7603397B1 (en) Detecting and managing missing parents between primary and secondary data stores
EP1376405A2 (en) System and method for managing file names for file system filter drivers
US7599971B1 (en) Detecting and managing missing parents between primary and secondary data stores for content addressed storage
KR20060063653A (en) Computer file system allowing ambiguous names
JPH06290095A (en) File managing device
CN113760830B (en) Distributed file storage editable system and method
JP3636773B2 (en) Information processing device for database check
JP4825504B2 (en) Data registration / retrieval system and data registration / retrieval method
JPH0844609A (en) Data backup method
JP2000148548A (en) Unnecessary record deleting device
JPH05265821A (en) Index managing system for data base
JPH0635779A (en) File control system
CN116266100A (en) Distributed object storage management method and device
JP2002269077A (en) Device and method for document management, and storage medium stored with document managing program
KR20000037515A (en) Method for composing b+ tree to manage history