Questions tagged «extended-properties»

10
读取/写入“扩展”文件属性(C#)
我试图找出如何在C#中读取/写入扩展文件属性,例如注释,比特率,访问日期,类别等,您可以在Windows资源管理器中看到它们。任何想法如何做到这一点?编辑:我主要是读/写视频文件(AVI / DIVX / ...)

1
您可以在以下代码中解释sys.sp_addextendedproperty的用法吗?
创建视图后,以下代码中发生了什么?您能给我任何想法或方法吗? 此代码是从这里获取的。 /****** Object: View [dbo].[vProductImages] Script Date: 04/28/2008 16:59:05 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[vProductImages] AS SELECT dbo.Products_Images.ProductID, dbo.Images.ThumbUrl, dbo.Images.FullImageUrl FROM dbo.Products_Images INNER JOIN dbo.Images ON dbo.Products_Images.ImageID = dbo.Images.ImageID GO EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00] Begin DesignProperties = Begin PaneConfigurations = Begin PaneConfiguration …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.