You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it will expand to source files directory path, it's primarily used when reading writing file or directory with relative path
# This will error #
_রিড-ফাইল("../dir/file.txt");
# To fix previous error relative path must be concatenated with _ডাইরেক্টরি constant #
_রিড-ফাইল(_ডাইরেক্টরি + "../dir/file.txt");
reads a file from specified path and returns it's content
দেখাও _রিড-ফাইল("E:/dir/file.txt");
# if path is relative, must use _ডাইরেক্টরি constant #
দেখাও _রিড-ফাইল(_ডাইরেক্টরি, "../dir/file.txt"); # reading a file which is one level above current directory #
_রাইট-ফাইল("ফাইল-প্যাথ", "কন্টেন্ট")
writes content to specified path, if file exists old contents is replaced and if file doesn't exist new file is created
_রাইট-ফাইল("E:/dir/file.txt", "Hello, World!");
# if path is relative, must use _ডাইরেক্টরি constant #
_রাইট-ফাইল(_ডাইরেক্টরি, "../dir/file.txt", "Hello, World!"); # writing to a file which is one level above current directory #
_ডিলিট-ফাইল("ফাইল-প্যাথ", "কন্টেন্ট")
deletes a file specified by path
_ডিলিট-ফাইল("E:/dir/file.txt");
# if path is relative, must use _ডাইরেক্টরি constant #
_ডিলিট-ফাইল(_ডাইরেক্টরি, "../dir/file.txt"); # delteting a file which is one level above current directory #
_নতুন-ডাইরেক্টরি("ডাইরেক্টরি-প্যাথ")
creates new directory specified by path
_নতুন-ডাইরেক্টরি("E:/dir");
# if path is relative, must use _ডাইরেক্টরি constant #
_নতুন-ডাইরেক্টরি(_ডাইরেক্টরি, "../dir"); # creating a directory which is one level above current directory #
_রিড-ডাইরেক্টরি("ডাইরেক্টরি-প্যাথ")
returns all files and directory names
_দেখাও রিড-ডাইরেক্টরি("E:/dir");
# if path is relative, must use _ডাইরেক্টরি constant #
_দেখাও রিড-ডাইরেক্টরি(_ডাইরেক্টরি, "../dir"); # reading from a directory which is one level above current directory #
_ডিলিট-ডাইরেক্টরি("ডাইরেক্টরি-প্যাথ")
deletes directory specified by path
_ডিলিট-ডাইরেক্টরি("E:/dir");
# if path is relative, must use _ডাইরেক্টরি constant #
_ডিলিট-ডাইরেক্টরি(_ডাইরেক্টরি, "../dir"); # delete a directory which is one level above current directory #
_ফাইল-নাকি-ডাইরেক্টরি("প্যাথ")
returns "ফাইল" string if path is to a file or returns "ডাইরেক্টরি" string if path is to a directory