[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

74. operatingsystem


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

74.1 Introduction to operatingsystem

パッケージ operatingsystemは、 ファイルシステム操作のようなオペレーティングシステムのタスクのための関数を含みます。


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

74.2 Directory operations

関数: chdir (dir)

ディレクトリ dirに変えます。

関数: mkdir (dir)

ディレクトリ dirを作ります。

関数: rmdir (dir)

ディレクトリ dirを削除します。

関数: getcurrentdirectory ()

現在のワーキングディレクトリを返します。

directoryも参照して下さい。

例:

 
(%i1) load("operatingsystem")$
(%i2) mkdir("testdirectory")$
(%i3) chdir("testdirectory")$
(%i4) chdir("..")$
(%i5) rmdir("testdirectory")$


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

74.3 File operations

関数: copy_file (file1, file2)

ファイル file1file2にコピーします。

関数: rename_file (file1, file2)

ファイル file1file2にリネームします。

関数: delete_file (file1)

ファイル file1を削除します。


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

74.4 Environment operations

関数: getenv (env)

環境変数 envの値を取得します。

例:

 
(%i1) load("operatingsystem")$
(%i2) getenv("PATH");
(%o2) /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


[ << ] [ >> ]           [Top] [Contents] [Index] [ ? ]

This document was generated by 市川雄二 on June, 21 2016 using texi2html 1.76.