最近よく使うのでメモ。
アロー関数(Node.js)
const fs = require('fs')
const mkdirExceptExist = (dirPath) => {
if (!fs.existsSync(dirPath)) { fs.mkdirSync(dirPath); }
};
参考: https://www.gesource.jp/weblog/?p=7672
###Lambda関数(Python)
import os
mkdirExceptExist = lambda path: "" if os.path.exists(path) else os.mkdir(path)
【Updated: 2019-07-21(Lambda関数を追加)】