⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rename-1.m

📁 GNU Octave is a high-level language, primarily intended for numerical computations. It provides a c
💻 M
字号:
from = tmpnam ();to = tmpnam ();id = fopen (from, "w");if (id > 0 && fclose (id) == 0)  [s, e] = stat (from);  if (! e)    if (rename (from, to) == 0)      [s, e] = stat (from);      if (e < 0)      	[s, e] = stat (to);      	e == 0      	unlink (to);      endif    endif  endifendif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -