GNU   davin.50webs.com/research
Bringing to you notes for the ages

       Main Menu          Research Projects         Photo Album            Curriculum Vitae      The Greatest Artists
    Email Address       Computer Games          Web Design          Java Training Wheels      The Fly (A Story)   
  Political Activism   Scruff the Cat       My Life Story          Smoking Cessation          Other Links      
Debugging Macros     String Class I     Linked List System I Java for C Programmers Naming Convention
    String Class II         How I use m4              Strings III                 Symmetrical I/O             Linked Lists II     
Run-Time Type Info   Virtual Methods      An Array System        Science & Religion            Submodes       
  Nested Packages      Memory Leaks    Garbage Collection      Internet & Poverty      What is Knowledge?
Limits of Evolution   Emacs Additions      Function Plotter           Romantic Love        The Next Big Thing
    Science Fiction     Faster Compilation Theory of Morality         Elisp Scoping               Elisp Advice      
  S.O.G.M. Pattern       Safe Properties         School Bullying          Charisma Control          Life and Death    
     Splitting Java          Multiple Ctors       Religious Beliefs         Conversation 1           Conversation 2    
   J.T.W. Language    Emacs Additions II      Build Counter             Relation Plotter          Lisp++ Language  
  Memory Leaks II   Super Constructors CRUD Implementation Order a Website Form There Is An Afterlife
More Occam's Razor C to Java Translator Theory of Morality II


datify.el

    

;;; datify.el

;; Copyright (C) 2006-2014 Davin Pearson

;; Author/Maintainer: Davin Max Pearson <http://davin.50webs.com>
;; Keywords: Cull Size Quota
;; Version: 1.0

;;; Commentary:

;; This file is not part of GNU Emacs.

;; This file puts timestamps on archive files based on the date that
;; the archive file was last modified.

;;; Limitation of Warranty

;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or (at
;; your option) any later version.
;;
;; This program is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
;; General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs, see the file COPYING.  If not, see:
;;
;; <http://www.gnu.org/licenses/gpl-3.0.txt>.


;;; Install Instructions:
;; See the following URL for the latest info and a tarball:
;;
;; <http://davin.50webs.com/research/2006/mopa2e.html#datify>
;;
;; Then untar the tarball to a folder pointed to by the Emacs variable
;; load-path and add the following line to your ~/.emacs file.
;;
;; (require 'datify)

;;; Known Bugs:

;; None!

;;; Code:

;; (setq filename "~/abc.tar")
;; (setq filename "cosc363-assignment-20081010-122731.zip")
;; (setq filename "~/foo.zip")
;; (setq ext "zip")
;;
(defun datify--file (filename)
  ;;(message "* inside datify--file filename = %s " filename)
  (let (extension basename time)
    (setq extension (cond
                     ((string-match "\\.exe$" filename)
                      ".exe")
                     ((string-match "\\.tar\\.gz$" filename)
                      ".tar.gz")
                     ((string-match "\\.tar$" filename)
                      ".tar")
                     ((string-match "\\.zip$" filename)
                      ".zip")
                     ((string-match "\\.pdf$" filename)
                      ".pdf")
                     (t
                      (error "must be a exe|tar|tar.gz|zip|pdf file"))))

(assert (string-match "\\.\\(exe\\|tar\\|tar.gz\\|zip\\|pdf\\)$" extension))
    (assert (file-exists-p filename))
    (setq time (nth 5 (file-attributes filename)))

    ;;(debug)

    (if (not (string-match (concat bak--yyyymmdd bak--hhmmss (regexp-quote extension) "$") filename))
        ;;                                Y Y    Y   Y        M    M   D    D           H    H    M    M     S    S
        ;;(if (not (string-match (concat "[0-9][0-9][0-9][0-9]" "[0-9][0-9][0-9][0-9]" "-" "[0-9][0-9][0-9][0-9][0-9][0-9]\\."
        (progn

(d-quote
           ;;
           ;; BOTE: sanity check
           ;;
           (assert (string-match (concat "^[-a-zA-Z0-9.]*[a-zA-Z]+" (regexp-quote extension) "$")
                                 (file-name-nondirectory filename))))

(progn
            ;;(debug)
            (assert (string-match (concat "\\(.*\\)" (regexp-quote extension) "$") filename))
            (setq basename (substring filename (match-beginning 1) (match-end 1)))
            (rename-file filename
                         (concat basename "-" (d-time--decode-time-readable time) extension)
                         'OK-if-ALREADY-EXISTS))))))

;; (datify--dir (concat (bak-dir) "baz"))
;; (datify--dir "~/bak")
(defun datify--dir (&optional dirname)
  (interactive)
  (let (list ptr)
    (if (and (eq dirname nil) (eq major-mode 'dired-mode))
        (setq dirname default-directory))
    (setq list (directory-files dirname t "\\.\\(exe\\|tar\\|tar\\.gz\\|zip\\|pdf\\)$"))
    (setq ptr list)
    (let ((i 0)
          (len (length list)))
      (while ptr
        (incf i)
        (message "datify--dir dirname=%s progress=%d%%" (prin1-to-string dirname) (/ (* 100 i) len))
        (datify--file (car ptr))
        (setq ptr (cdr ptr))
        ))
  ))

(defun datify ()
  (interactive)
  ;;(d-time--update-timestamps)
  (let ((dirname default-directory))
    (assert (eq major-mode 'dired-mode))
    (datify--dir dirname)))

(defun datify-bak-dir ()
  (interactive)
  (datify--dir (bak-dir)))

(provide 'datify)
Back
| Main Menu | Research Projects | Photo Album | Curriculum Vitae | The Greatest Artists |
| Email Address | Computer Games | Web Design | Java Training Wheels | The Fly (A Story) |
| Political Activism | Scruff the Cat | My Life Story | Smoking Cessation | Other Links |
| Debugging Macros | String Class I | Linked List System I | Java for C Programmers | Naming Convention |
| String Class II | How I use m4 | Strings III | Symmetrical I/O | Linked Lists II |
| Run-Time Type Info | Virtual Methods | An Array System | Science & Religion | Submodes |
| Nested Packages | Memory Leaks | Garbage Collection | Internet & Poverty | What is Knowledge? |
| Limits of Evolution | Emacs Additions | Function Plotter | Romantic Love | The Next Big Thing |
| Science Fiction | Faster Compilation | Theory of Morality | Elisp Scoping | Elisp Advice |
| S.O.G.M. Pattern | Safe Properties | School Bullying | Charisma Control | Life and Death |
| Splitting Java | Multiple Ctors | Religious Beliefs | Conversation 1 | Conversation 2 |
| J.T.W. Language | Emacs Additions II | Build Counter | Relation Plotter | Lisp++ Language |
| Memory Leaks II | Super Constructors | CRUD Implementation | Order a Website Form | There Is An Afterlife |
| More Occam's Razor | C to Java Translator | Theory of Morality II
Last modified: Sat Apr 29 18:38:34 NZST 2017
Best viewed at 800x600 or above resolution.
© Copyright 1999-2017 Davin Pearson.
Please report any broken links to