关于 MAXScript 中文路径返回上级目录(精简版)

之前写过一个 关于 MAXScript 中文路径返回上级目录 的博文

今天无意中发现了一个更简单的方法

代码如下:

fn newfile filepath =
(
nf = getfilenamepath filepath
nf[nf.count] = ""
nf
) --返回上级路径
newpath "D:\Program Files\Autodesk\3ds Max 2014\小一\工具"

这样确实比以前清爽多了

时间: 2024-10-19 08:27:10

关于 MAXScript 中文路径返回上级目录(精简版)的相关文章

<iOS小技巧> 返回上级目录操作Goback()方法

Goback()方法功能:返回上一级界面,通过判断 popViewControllerAnimated 类型是否为空,来判断是present还是pop出来,然后直接做了releaseSelf操作: - (void)goBack {    IDSLOG(@"self: %@, parent: %@", self, [self parentViewController]);        id page = [self presentingViewController];    IDSLO

浏览器里的文件管理小系统filedir.php,返回上级目录时有个“浏览”链接总掉了

<?php $path='./'; if(isset($_GET['dir'])){$path=$path."./".$_GET['dir'];} $dh=opendir($path);if($dh===false){echo '打开出错';exit;}while(($item = readdir($dh))!==false){$list[]=$item;}print_r($list);closedir($dh);?><!DOCTYPE html><htm

jQuery返回顶部(精简版)

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>jQuery返回顶部</title> <style> *body{ background-attachment: fixed; background-image: url(about:blank); /* 必须的,防抖动 */} *body #t

asp.net与C# path.GetFullPath 获取上级目录

string path = new directoryinfo("../").fullname;//当前应用程序路径的上级目录 获取当前目录可以使用appdomain.currentdomain.basedirectory. 获取当前目录的上级目录path.getfullpath("..") 代码 using system; using system.collections.generic; using system.linq; using system.text;

关于上级目录与上上级目录的表示相对路径

{% include "../../partials/main_nav.php"%} 总是的记住用相对路径找文件首先得找到它的父节点,父节点找到了,在一个斜杠就是指定子目录,依次往下就行,所以利用相对路径找文件的方式就是 第一步:../(一个这个表示本目录的父节点即上级目录)找需要用到的最低的父节点 第二步:/子文件夹依次顺着找到所需要的文件 从图中可以看到先找到最顶级的父亲文件夹:app,这是通过../../实现的,所以现在:app=../../:现在知道顶级父亲,子文件应该很好找吧

HTML相对路径相对目录--上级目录及下级目录的写法

如何表示上级目录 ../表示源文件所在目录的上一级目录,../../表示源文件所在目录的上上级目录,以此类推. 假设info.html路径是:c:/Inetpub/wwwroot/sites/blabla/info.html假设index.html路径是:c:/Inetpub/wwwroot/sites/index.html在info.html加入index.html超链接的代码应该这样写: <a href = "../index.html">index.html</

HTML中如何设置超链接相对路径--上级目录与下级目录的写法

HTML中用../表示源文件所在目录的上一级目录,../../表示源文件所在目录的上上级目录,再上层目录类似. 若chap1.html在D:php\Tutor\student1\math\chap1.html,student1.html在D:php\Tutor\student1.html,则在chap1.html中访问student1.html这样写: <a href = "../../student1.html">student1.html</a> 引用下级目

unity3d 依据指定的Assets下的目录路径 返回这个路径下的全部文件名称

using UnityEngine; using System.Collections; using System.Collections.Generic; using System.IO; <pre class="csharp" name="code"> public static List<string> nameArray = new List<string>(); /// <summary> /// 依据指定的

QT中文路径测试结果大全及方法

第一种:windows下最常用最有效,直接使用国标码 #include <QTextCodec> ..... QString fileName = QFileDialog::getOpenFileName(this,QString("读取匹配原图"),QString("E:\\"),QString("*.jpg *.bmp *.png")); if(fileName.isEmpty()) {     QMessageBox::warn