zoukankan      html  css  js  c++  java
  • 在SQL Server中取得操作系统文件的最后修改日期 [Z]

    /*
      获取文件最后访问日期
      @filepath   文件路径,如:   c:\1.txt
      @filedate   文件最后访问日期

      调用示例:
      declare   @dt   varchar(20)
      exec   getFileLastAccessDate   'c:\1.txt',@dt   output
      select   @dt
    */
    create   procedure   getFileLastAccessDate
      
    @filepath   varchar(4000),
      
    @filedate   varchar(20)   output
    as
      
    declare   @obj   int,@file   int
      
    declare   @fileexists   varchar(10)
      
    exec   sp_oacreate   'Scripting.FileSystemObject',@obj   output
      
    exec   sp_oamethod   @obj,'FileExists',@fileexists   output,@filepath
      
    if   @fileexists='False'
      
    begin
        
    set   @filedate='文件不存在'
        
    return
      
    end
      
    exec   sp_oamethod   @obj,'GetFile',@file   output,@filepath
      
    exec   sp_oagetproperty   @file,'DateLastAccessed',@filedate   output
    go
    /*
      获取文件最后修改日期
      @filepath   文件路径,如:   c:\1.txt
      @filedate   文件最后修改日期

      调用示例:
      declare   @dt   varchar(20)
      exec   getFileLastModified   'c:\1.txt',@dt   output
      select   @dt
    */
    create procedure getFileLastModified
      
    @filepath varchar(4000),
      
    @filedate varchar(20) output
    as
      
    declare   @obj   int,@file   int
      
    declare   @fileexists   varchar(10)
      
    exec   sp_oacreate   'Scripting.FileSystemObject',@obj   output
      
    exec   sp_oamethod   @obj,'FileExists',@fileexists   output,@filepath
      
    if   @fileexists='False'
      
    begin
        
    set   @filedate='文件不存在'
        
    return
      
    end
      
    exec   sp_oamethod   @obj,'GetFile',@file   output,@filepath
      
    exec   sp_oagetproperty   @file,'DateLastModified',@filedate   output
    go
  • 相关阅读:
    grpc 浅谈
    ticket项目所得
    odoo 安装
    Ubuntu 设置系统环境变量和开机自启动
    supervisor 错误集合
    Python之路--前端知识--HTML
    Python之路--Python基础14--MySQL
    Python之路--Python基础13--异步IO、RedisMemcached缓存、RabbitMQ队列
    Python之路--Python基础12--并发编程之协程
    Python之路--Python基础11--并发编程之线程
  • 原文地址:https://www.cnblogs.com/RobotTech/p/1067905.html
Copyright © 2011-2022 走看看